# Oblique Markets PDL People Enrichment

> Oblique Markets PDL People Enrichment is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.28/call, status unknown (last checked 2026-09-13).

Enriches a person record from supplied identity signals (name, email, LinkedIn, company) returning normalized PDL-shaped person fields with explicit nulls for unavailable attributes

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/pdl-people-enrich
- Price: $0.28/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-pdl-people-enrichment-ebe1fcbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_in3tp_cM9UxJBz5SAuryN

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 oblique-markets-pdl-people-enrichment-ebe1fcbd -d '<json body>'
```

Example prompt: Can you enrich this contact for me — her name is Sarah Chen, her email is sarah.chen@acmecorp.com, and her LinkedIn is linkedin.com/in/sarahchen — I want her job title, location, and any other professional details you can find, returned with clear nulls for anything unavailable.

## When to prefer this

Choose this endpoint when you need PDL-compatible person enrichment with a consistent schema that includes explicit nulls for unavailable fields — critical for pipelines that must distinguish missing data from unrequested data. Prefer over raw PDL API when you want a pay-per-call micropayment model via x402/USDC with no subscription required. Best when you have at least one strong identity signal (email, LinkedIn URL, or name+domain) and need normalized professional profile data including title, company, location, and education.

## Known failure modes

- Insufficient identity signals provided — too few fields to resolve a unique person, returns null profile or empty result
- Person not found in PDL database — all enrichment fields returned as explicit nulls
- Invalid LinkedIn URL format — rejected input, no enrichment attempted
- Rate limit or payment failure — x402 payment not accepted or insufficient USDC balance
- Ambiguous name/company combination matching multiple records — may return best-guess or null

## How this service works

Use when an agent needs pdl people enrich. Returns PDL-shaped people enrichment from supplied identity signals, with normalized person fields and explicit nulls for unavailable third-party attributes. $0.28.

## Output

A normalized, PDL-shaped person object containing available professional attributes such as full name, job title, seniority, current company, location, LinkedIn URL, education history, skills, and social profiles. Fields that cannot be resolved from third-party data are returned as explicit nulls rather than omitted, enabling downstream systems to distinguish 'not found' from 'not requested'.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "description": "Full name"
  },
  "email": {
   "type": "string",
   "description": "Person email address"
  },
  "domain": {
   "type": "string",
   "description": "Company domain"
  },
  "company": {
   "type": "string",
   "description": "Company or organization"
  },
  "last_name": {
   "type": "string",
   "description": "Last name"
  },
  "first_name": {
   "type": "string",
   "description": "First name"
  },
  "linkedin_url": {
   "type": "string",
   "description": "professional profile URL"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-pdl-people-enrichment-ebe1fcbd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
