Skip to main content
GET
/
v1
/
company
/
enrichment
Company Enrichment
curl --request GET \
  --url https://api.akta.pro/api/v1/company/enrichment \
  --header 'x-api-key: <api-key>'
{
    "data": {
        "firmographics": {
            "name": "Canva",
            "website": "https://canva.com",
            "location": "Sydney, Australia",
            "founded": 2013,
            "company_status": "private",
            "operating_status": "Operating",
            "ticker": null
        },
        "funding": {
            "overall": {
                "funding_stage": "Secondary Market",
                "total_funding": 580000000.00,
                "last_funding_date": "2024-03-12",
                "num_funding_rounds": "12"
            }
        }
    },
  "credits_consumed": 0.05,
  "count": 2
}

Overview

The Company Enrichment API returns detailed company data across multiple sections — firmographics, go-to-market and business model, headcount, website traffic, funding, financials, acquisitions and investments. Callers can request all sections at once or scope the response to a specific subset using the sections parameter. Results are returned in the API response.

Endpoint Details

  • Method: GET
  • Endpoint: /v1/company/enrichment

Authentication requirements

  • Include a valid API key in the x-api-key request header.

Request

Request Parameters

Header Parameters

x-api-key
string
required
Your API key.

URL Parameters

company
string
required
Company website (e.g. https://canva.com) or a company UUID (e.g. 00031n-tesla ). The UUID can be obtained from the Company Search API.
sections
string[]
Comma-separated list of sections to return. If omitted, all available sections are returned.Available values: firmographics, gtm_and_business_model, headcount, website_traffic, funding Note: acquisitions and investments are available on the Enterprise tier only.

Example Request

GET /v1/company/enrichment?company=https://canva.com&sections=firmographics,funding
x-api-key: <your_api_key>

Response

Successful Response Fields

Returns a JSON object with the following structure:
credits_consumed
float
Number of credits consumed
data
object
Object whose keys match the requested sections. Only requested sections are present in the response.
count
integer
Number of sections returned
{
    "data": {
        "firmographics": {
            "name": "Canva",
            "website": "https://canva.com",
            "location": "Sydney, Australia",
            "founded": 2013,
            "company_status": "private",
            "operating_status": "Operating",
            "ticker": null
        },
        "funding": {
            "overall": {
                "funding_stage": "Secondary Market",
                "total_funding": 580000000.00,
                "last_funding_date": "2024-03-12",
                "num_funding_rounds": "12"
            }
        }
    },
  "credits_consumed": 0.05,
  "count": 2
}

Authorizations

x-api-key
string
header
required

API key obtained from your Akta account.

Query Parameters

query
string
required

Company website (e.g. 'canva.com') or a company UUID. The UUID can be obtained from the Company Search API.

sections
enum<string>[]

List of sections to return. If omitted, all sections are returned. Available values: firmographics, gtm_and_business_model, headcount, website_traffic, funding, acquisitions, investments. Note: acquisitions and investments are available on the Enterprise tier only.

Available options:
firmographics,
gtm_and_business_model,
headcount,
website_traffic,
funding,
acquisitions,
investments

Response

Enrichment data returned

status
string
Example:

"success"

data
object

Enriched company data keyed by section name.

count
integer

Number of sections returned.

credits_consumed
number<float>