Skip to main content

Overview

The Company Enrichment API returns structured company intelligence for a given company. Pass a company website or company UUID in the company field. Use the optional sections field to control which enrichment sections are returned. If sections is omitted, all available sections are returned.

Endpoint Details

  • Method: POST
  • Endpoint: /v1/companies/enrich
  • Base URL: https://api.akta.pro

Authentication

Pass your API key in the x-api-key request header.

Request

Body Parameters

string
required
Company website or company UUID. Example: https://www.canva.com or 3fa85f64-5717-4562-b3fc-2c963f66afa6. Company UUIDs can be obtained from the Company Search API.
array of strings
Sections to return. If omitted, all available sections are returned.

Available Sections

string
Name, location, founded year, company type, operating status, and ticker.
string
Go-to-market strategy and business model details.
string
Employee count data.
string
Website traffic metrics.
string
Funding stage, total raised, last round date, and number of funding rounds.
string
Financial data for public companies.
string
Financial data for UK private companies.
string
Company acquisition activity.
string
Company investment activity. Available on enterprise tier.

Example Request

Response

Successful Response Fields

Returns a JSON object with the following structure:
string
Request status. Returns success or error.
object
Object containing the requested enrichment sections. Keys match the requested section names. Only requested sections are present.

Firmographics Fields

string
Company name.
string
Primary company website.
string
Company location. Example: Sydney, Australia.
integer
Year the company was founded.
string
Company type. Example values include public, private, acquired, and unknown.
string
Operating status. Example: Operating, Closed.
string | null
Stock ticker. Returns null if the company is private.

Funding Fields

string
Latest funding stage. Example: Series B, Secondary Market.
float
Total funding raised in USD.
string
ISO 8601 date of the latest funding round.
string
Total number of funding rounds.

Example Response

Error Responses

400 Bad Request

Returned when the request contains invalid input.

422 Unprocessable Entity

Returned when the required company identifier is missing.

404 Company Not Found

Returned when no company matches the provided input.

500 Internal Server Error

Returned when an unexpected server error occurs.