> ## Documentation Index
> Fetch the complete documentation index at: https://agent-docs.akta.pro/llms.txt
> Use this file to discover all available pages before exploring further.

# Company Data (Markdown) Overview

> Structured company data across 15 sections, rendered as a single Markdown document.

The akta.pro Company Enrichment Markdown API returns the same structured company data as the [Company Data API](/docs/company-data/overview), but formatted as a single, human-readable Markdown string instead of nested JSON. Pass a company website domain or UUID and specify which sections you need — only the requested sections are rendered into the Markdown document.

This is a **synchronous GET API**. Pass parameters in the URL and receive the Markdown document immediately in the HTTP response. No polling required.

**Why Markdown instead of JSON:** the Markdown output is built for feeding directly into an LLM prompt, a RAG pipeline, a chat agent's context window, or a human-facing report — anywhere structured JSON would need to be flattened or reformatted before it's readable. If your workflow parses individual fields programmatically, use the [Company Data API](/docs/company-data/overview) instead.

**The available sections** are identical to the Company Data API:

| Section              | What you get                                          |
| -------------------- | ----------------------------------------------------- |
| `firmographic`       | Firmographics and identity                            |
| `business_model`     | How the company makes money                           |
| `company_assessment` | Strengths, risks and summary                          |
| `trust_signal`       | Compliance, awards and credibility                    |
| `company_hierarchy`  | Parent and subsidiaries                               |
| `digital_presence`   | Web, social and app footprint                         |
| `financial_estimate` | Estimated financial performance                       |
| `location`           | HQ, offices and markets served                        |
| `management_profile` | Founders and executives                               |
| `product_offering`   | Products, brands and differentiators                  |
| `strategic_signal`   | Partnerships and recent moves                         |
| `customer_profile`   | Segments and customers                                |
| `industry`           | Industry classification                               |
| `technology`         | Tech stack and AI capabilities                        |
| `funding_detail`     | Rounds, amounts and dates *(enterprise tier only)*    |
| `mna_and_investment` | Acquisitions and investments *(enterprise tier only)* |

<Info>
  `funding_detail` and `mna_and_investment` are only available on the enterprise plan. Requesting them on other plans returns a `403` error.
</Info>

**What you get back:** a single Markdown document with an `H1` title for the company name, followed by an `H2` section per requested section, in the order requested. Nested list items carry inline **bold** field labels, and each sourced claim is followed by a `Source:` line.

**Common use cases:**

* **LLM context injection** : drop the Markdown output directly into a prompt or system message for an agent that needs company context, without writing a JSON-to-text formatter
* **RAG pipelines** : chunk and embed the Markdown document as-is for retrieval-augmented generation over company data
* **Chat and copilot tools** : render the Markdown directly in a chat UI as a readable company brief
* **Quick human review** : generate a one-shot readable summary of a company for a analyst or salesperson without building a UI around the JSON response

<Info>
  This API is synchronous. The Markdown document is returned directly in the HTTP response. No job submission or polling required.
</Info>

***
