# PDL Company Enrich

> PDL Company Enrich is a paid API for AI agents from stable-people-data-git-pdl-signoz-usage-alarms-merit-systems.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14, last successful call 2026-07-31).

Enrich a company record with firmographics, industry codes, funding details, and social profiles using identifiers like name, website, ticker, LinkedIn URL, or PDL ID.

## Facts

- Endpoint: POST https://stable-people-data-git-pdl-signoz-usage-alarms-merit-systems.vercel.app/api/pdl/company/enrich
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-31
- Success rate: 90% of calls made through Zero
- Rating: 3.0 / 5 from 2 reviews
- Activations on Zero: 1273
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pdl-company-enrich-c66ef73a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4N8rLF3h09XUeqqOBe7Ol

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability pdl-company-enrich-c66ef73a -d '<json body>'
```

Example prompt: Can you enrich the company record for Stripe — look it up by their website stripe.com and get me their industry codes, employee count, funding history, and LinkedIn profile?

## When to prefer this

Use this endpoint when you have a specific company identifier (name, website, ticker, LinkedIn URL, or PDL ID) and need to enrich a single company record with comprehensive firmographic, funding, and social profile data. Prefer this over PDL Company Search when you already know which company you want and need a full enrichment rather than a list of matching results.

## Known failure modes

- No match found for the provided identifier — returns empty or null result
- Ambiguous company name resolves to wrong entity — verify with website or PDL ID
- Rate limit exceeded — returns 429 error
- Invalid or malformed input identifier — returns 400 validation error
- Company exists but has sparse data — partial record returned with many null fields
- Payment failure via x402 protocol — call not executed

## Output

Returns a structured company record containing firmographic fields such as industry codes (SIC, NAICS), employee count, revenue range, headquarters location, founding year, funding rounds and total funding, social media profiles, LinkedIn URL, company description, and other business metadata resolved from the provided identifier.

## Example request

```json
{
 "name": "Stripe",
 "website": "stripe.com",
 "min_likelihood": 7,
 "include_if_matched": true
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "name": {
       "type": "string",
       "description": "Company name"
      },
      "pdl_id": {
       "type": "string",
       "description": "PDL company ID or LinkedIn slug"
      },
      "region": {
       "type": "string",
       "description": "HQ state or province"
      },
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol"
      },
      "country": {
       "type": "string",
       "description": "HQ country"
      },
      "profile": {
       "type": "string",
       "description": "Social profile URL"
      },
      "website": {
       "type": "string",
       "description": "Company domain"
      },
      "locality": {
       "type": "string",
       "description": "HQ city"
      },
      "location": {
       "type": "string",
       "description": "HQ location (street address to country)"
      },
      "required": {
       "type": "string",
       "description": "Boolean expression of required fields"
      },
      "titlecase": {
       "type": "boolean",
       "description": "Titlecase text"
      },
      "postal_code": {
       "type": "string",
       "description": "HQ postal code"
      },
      "data_include": {
       "type": "string",
       "description": "Fields to include/exclude"
      },
      "min_likelihood": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Minimum confidence (1-10, default 2)"
      },
      "street_address": {
       "type": "string",
       "description": "HQ street address"
      },
      "include_if_matched": {
       "type": "boolean",
       "description": "Show matched input fields"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pdl-company-enrich-c66ef73a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-people-data-git-pdl-signoz-usage-alarms-merit-systems.vercel.app](https://www.zero.xyz/host/stable-people-data-git-pdl-signoz-usage-alarms-merit-systems.vercel.app/llms.txt)
