Skip to main content
The Enrich Company endpoint retrieves a comprehensive profile for any organization in Clodura’s database. At its core, every request returns firmographic data — company name, domain, founding year, industry, employee count, revenue, HQ address, contact details, and key financial metrics. You can optionally expand the response with three additional data components: technographics (tech stack, programming languages, operating systems), acquisition history, and funding event details. Each additional component adds one credit to the base cost. You must supply at least one unique identifier — either an organisationId (obtained from Search Organizations) or an orgLinkedinUrl. If both are provided, organisationId takes precedence.
Credit cost by requested components:
Components RequestedCredits
Base firmographics only1 credit
Base + Technographics2 credits
Base + Acquisitions2 credits
Base + Funding Details2 credits
Base + Technographics + Acquisitions3 credits
Base + Technographics + Funding Details3 credits
Base + Acquisitions + Funding Details3 credits
All components (max)4 credits

Endpoint

POST /api/v1/organisation/enrich

Request

Headers

HeaderValue
X-API-KEYYour Clodura API key
Content-Typeapplication/json

Body Parameters

organisationId
string
Clodura’s unique identifier for the company. Obtain this from the Search Organizations endpoint. Provide either this field or orgLinkedinUrl.
orgLinkedinUrl
string
Full LinkedIn Company profile URL (e.g., https://www.linkedin.com/company/clodura-ai/). Required if organisationId is not provided.
includeTechnographics
boolean
When true, the response includes the company’s technology stack, programming languages, operating systems, and products in use. Adds 1 credit. Defaults to false.
includeAcquisitions
boolean
When true, the response includes a list of companies acquired by the organization and any subsidiary relationships. Adds 1 credit. Defaults to false.
includeFunding
boolean
When true, the response includes all recorded funding events with round type, investors, date, and amount. Adds 1 credit. Defaults to false.
You must provide at least one of organisationId or orgLinkedinUrl. Requests that include neither will be rejected with a 422 error.

Example Request

curl --request POST \
  --url https://api.clodura.ai/api/v1/organisation/enrich \
  --header 'X-API-KEY: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "organisationId": "2389402640191586304"
  }'

Response

A successful 200 response returns an organisation object containing all requested data components.
organisation
object

Example Response

{
  "organisation": {
    "id": "org_98765",
    "name": "Circuitry AI",
    "websiteUrl": "https://circuitry.ai",
    "linkedinUrl": "https://www.linkedin.com/company/circuitry-ai/",
    "primaryDomain": "circuitry.ai",
    "description": "AI-driven solutions for modern businesses.",
    "foundedYear": "2018",
    "industry": ["Technology"],
    "estimatedNumEmployees": "51-200",
    "companyPhoneNumbers": ["+1-555-0123"],
    "companyEmails": ["contact@circuitry.ai"],
    "hqRawAddress": "123 AI Lane, San Francisco, CA 94105",
    "hqCity": "San Francisco",
    "hqState": "California",
    "hqPostalCode": "94105",
    "hqCountry": "USA",
    "annualRevenue": "12200000",
    "totalFunding": "50000000",
    "latestFundingRoundDate": "2023-10-15",
    "latestFundingStage": "Series B",
    "numOfAcquisitions": "2",
    "numOfSubsidaries": "3",
    "acquisitionList": [
      {
        "id": "acq_001",
        "acquireeName": "DataTech Inc.",
        "announcedDate": "2022-05-20",
        "price": 350000000
      }
    ],
    "fundingEvents": [
      {
        "id": "fund_881",
        "round_type": "Series A",
        "investors": "Sequoia Capital",
        "date": "2022-05-20",
        "fundingAmount": "15000000"
      }
    ],
    "technographics": {
      "technologies": ["Cloud Computing", "5G"],
      "programmingLanguages": ["Python", "JavaScript"],
      "operatingSystem": ["Linux", "MacOS"],
      "products": ["Salesforce", "AWS", "Google Analytics"]
    }
  }
}

Error Codes

StatusMeaning
400Bad request — malformed input or domain count exceeded
401Unauthorized — your API key is missing or invalid
402Payment required — credits exhausted; upgrade your plan or add credits
403Forbidden — this endpoint requires a paid Clodura plan
404Not found — no enrichment data available for this organization
409Daily rate limit reached — maximum API calls for this endpoint exceeded
422Unprocessable entity — missing required identifier or invalid parameter
429Rate limit exceeded — reduce request frequency or upgrade your plan