Skip to main content
The akta.pro Company Enrichment Markdown API returns the same structured company data as the Company Data API, 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 instead. The available sections are identical to the Company Data API:
funding_detail and mna_and_investment are only available on the enterprise plan. Requesting them on other plans returns a 403 error.
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
This API is synchronous. The Markdown document is returned directly in the HTTP response. No job submission or polling required.