PDL Company Enrich - Enrich a company record with firmographics, industry codes, funding,
PDL Company Enrich - Enrich a company record with firmographics, industry codes, funding, and social profiles. Supports lookup by name, website, ticker, LinkedIn, or PDL ID.
100000 (raw units)
price
29
calls / 30d
3
unique payers
2026-09-16
updated
Provider
stablepeopledata.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7f33B3C113915a0f2981070553BA9538C0f90171",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"country": {
"description": "HQ country",
"type": "string"
},
"data_include": {
"description": "Fields to include/exclude",
"type": "string"
},
"include_if_matched": {
"description": "Show matched input fields",
"type": "boolean"
},
"locality": {
"description": "HQ city",
"type": "string"
},
"location": {
"description": "HQ location (street address to country)",
"type": "string"
},
"min_likelihood": {
"description": "Minimum confidence (1-10, default 2)",
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"name": {
"description": "Company name",
"type": "string"
},
"pdl_id": {
"description": "PDL company ID or LinkedIn slug",
"type": "string"
},
"postal_code": {
"description": "HQ postal code",
"type": "string"
},
"profile": {
"description": "Social profile URL",
"type": "string"
},
"region": {
"description": "HQ state or province",
"type": "string"
},
"required": {
"description": "Boolean expression of required fields",
"type": "string"
},
"street_address": {
"description": "HQ street address",
"type": "string"
},
"ticker": {
"description": "Stock ticker symbol",
"type": "string"
},
"titlecase": {
"description": "Titlecase text",
"type": "boolean"
},
"website": {
"description": "Company domain",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://stablepeopledata.dev/api/pdl/company/enrich" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://stablepeopledata.dev/api/pdl/company/enrich");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://stablepeopledata.dev/api/pdl/company/enrich")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6688.json, and this resource appears in /discovery/resources and /discovery/search.