Skip to main content

Authentication

All requests must include an API key in the x-api-key HTTP header.
x-api-key: <YOUR_API_KEY>
API keys are issued from your Akta account. Contact support@akta.ai if you do not yet have API access or need to rotate a key.
Never expose your API key in client-side code, browser requests, or public repositories. A missing or invalid key returns 401 Unauthorized.

Execute your first request

curl --location 'https://api.akta.pro/api/v1/company/enrichment?company=canva.com&sections=firmographics' \
  --header 'x-api-key: <YOUR_API_KEY>'
Sample Response
{
    "data": {
        "uuid": "00000jw-canva",
        "firmographics": {
            "name": "Canva",
            "website": "http://www.canva.com",
            "location": "Sydney, Australia",
            "founded_year": 2013,
            "type": "private",
            "operating_status": "Operating",
            "ticker": "",
            "region": "Oceania",
            "country_code": "Australia",
            "product_category": "",
            "core_offering": "",
            "product_catalog": []
        }
    },
    "credits_consumed": 1.0
}