Skip to main content
POST
/
api
/
enterprise
/
company
/
enrich
/
single
Company Instant Enrichment
curl --request POST \
  --url https://api.wokelo.ai/api/enterprise/company/enrich/single/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "company": "",
  "sections": [
    "firmographics"
  ]
}
'
{
    "status": "success",
    "data": {
        "firmographics": {
            "name": "Canva",
            "website": "http://www.canva.com",
            "location": "Sydney, Australia",
            "founded": 2013,
            "type": "private",
            "operating_status": "Operating",
            "ticker": null
        },
        "funding": {
            "overall": {
                "funding_stage": "Secondary Market",
                "total_funding": 2508450682.0,
                "last_funding_date": "2025-08-20",
                "num_funding_rounds": "21"
            }
        }
    }
}

Documentation Index

Fetch the complete documentation index at: https://docs.wokelo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

The Company Instant Enrichment API delivers structured data for a company across sections such as firmographics, products, funding, headcount, and more.

Endpoint Details

  • Method: POST
  • Endpoint: /api/enterprise/company/enrich/single/

Authentication Requirements

  • Include a valid JWT token in your request header
  • If you don’t have a token yet, you can get one from the /auth/token/ endpoint first.

Request

Header Parameters

Authorization
string
required
JWT token obtained from the Authentication

Body Parameters

company
string
required
A permalink or URL of the company to enrich (e.g. "canva", "tesla-motors" or "https://tesla.com")
sections
string[]
required
Sections of data to include in the enrichment response. Select one or more values.Supported values: firmographics, gtm_and_business_model,headcount, funding, public_company_financials, uk_private_company_financials, acquisitions, investments, website_traffic

Response

A successful response returns the enriched company data directly.

Successful Response Fields

status
string
Status of the request (e.g. "success")
data
object
Enriched company data keyed by section name
{
    "status": "success",
    "data": {
        "firmographics": {
            "name": "Canva",
            "website": "http://www.canva.com",
            "location": "Sydney, Australia",
            "founded": 2013,
            "type": "private",
            "operating_status": "Operating",
            "ticker": null
        },
        "funding": {
            "overall": {
                "funding_stage": "Secondary Market",
                "total_funding": 2508450682.0,
                "last_funding_date": "2025-08-20",
                "num_funding_rounds": "21"
            }
        }
    }
}

Authorizations

Authorization
string
header
required

JWT token obtained from the /auth/token/ endpoint.

Body

application/json
company
string
required

A permalink or URL of the company to enrich.

Example:

"canva"

sections
enum<string>[]
required

Sections of data to include in the enrichment response. Pass all values to get full data.

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

Response

200 - application/json

Enrichment data returned

status
string
Example:

"success"

data
object

Enriched company data keyed by section name.