Skip to main content
POST
https://api.crustdata.com
/
company
/
enrich
curl --request POST \ --url https://api.crustdata.com/company/enrich \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'x-api-version: <x-api-version>' \ --data ' { "domains": [ "serverobotics.com" ], "fields": [ "basic_info", "headcount", "funding" ] } '
[ { "matched_on": "serverobotics.com", "match_type": "domain", "matches": [ { "confidence_score": 1, "company_data": { "crustdata_company_id": 628895, "basic_info": { "crustdata_company_id": 628895, "name": "Serve Robotics", "primary_domain": "serverobotics.com", "all_domains": [ "serverobotics.com" ], "website": "https://www.serverobotics.com/", "professional_network_url": "https://www.linkedin.com/company/serverobotics", "professional_network_id": "72049930", "profile_name": "Serve Robotics", "logo_permalink": "https://crustdata-media.s3.us-east-2.amazonaws.com/company/9f84e252d0f9e35c95843303b33eda9313148adb54404d06947be750e9187db5.jpg", "description": "Serve Robotics (NASDAQ:SERV) develops advanced, AI-powered, low-emissions sidewalk delivery robots that endeavor to make delivery sustainable and economical. Spun off from Uber in 2021 as an independent company, Serve has completed tens of thousands of deliveries for enterprise partners such as Uber Eats and 7-Eleven. The company has scalable multi-year contracts, including a signed agreement to deploy up to 2,000 delivery robots on the Uber Eats platform across multiple U.S. markets. Come join us, we are hiring!", "company_type": "Public Company", "year_founded": 2021, "employee_count_range": "51-200", "markets": [ "PRIVATE", "NASDAQ" ], "industries": [ "Technology, Information and Internet", "Technology, Information and Media" ] }, "headcount": { "total": 381 }, "funding": { "total_investment_usd": 394000000, "last_round_amount_usd": 100000000, "last_fundraise_date": "2025-10-10", "last_round_type": "post_ipo_equity" } } } ] } ]

Documentation Index

Fetch the complete documentation index at: https://docs.crustdata.com/llms.txt

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

Authorizations

Authorization
string
header
required

API key passed as a Bearer token in the Authorization header.

Headers

x-api-version
enum<string>
default:2025-11-01
required

API version to use. This endpoint currently requires 2025-11-01.

Available options:
2025-11-01
Example:

"2025-11-01"

Body

application/json

Company identifier plus optional field selection and exact_match. Submit one identifier type per request.

Raw request parameters from query string

names
string[] | null
domains
string[] | null
crustdata_company_ids
integer[] | null
professional_network_profile_urls
string[] | null
fields
string[]

Field groups to include in company_data. Current platform behavior: when fields is omitted, only crustdata_company_id and basic_info are returned — sections such as headcount, funding, people, and hiring must be listed explicitly. Valid field groups for enrich: basic_info, revenue, headcount, funding, hiring, web_traffic, seo, competitors, employee_reviews, people, locations, taxonomy, followers, news, software_reviews, social_profiles. Not valid for enrich: roles, skills (search-only fields).

exact_match
boolean | null

Whether to use exact matching (null means auto-detect)

Response

Enriched company matches returned as a top-level array

matched_on
string

The specific input value (e.g., 'google.com')

match_type
enum<string>
Available options:
name,
domain,
crustdata_company_id,
professional_network_profile_url
matches
object[]
Example:
[
  {
    "matched_on": "mintlify.com",
    "match_type": "domain",
    "matches": []
  }
]