PDL Person Search - Search across 3B+ person records using Elasticsearch DSL or SQL querie
PDL Person Search - Search across 3B+ person records using Elasticsearch DSL or SQL queries. Returns matching person records with pagination via scroll_token. Price scales with the requested `size` (1 PDL credit per result).
280000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-28
updated
Provider
stablepeopledata.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x7f33B3C113915a0f2981070553BA9538C0f90171",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "280000",
"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": {
"dataset": {
"description": "Datasets to include: resume, email, phone, mobile_phone, street_address, consumer_social, developer, all",
"type": "string"
},
"query": {
"additionalProperties": {},
"description": "Elasticsearch v7.7 DSL query object",
"propertyNames": {
"type": "string"
},
"type": "object"
},
"scroll_token": {
"description": "Pagination token from previous response",
"type": "string"
},
"size": {
"description": "Batch size (1-100, default 1)",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"sql": {
"description": "SQL query: SELECT * FROM person WHERE ... Do not include LIMIT — use size for result count.",
"type": "string"
},
"titlecase": {
"description": "Titlecase text in response",
"type": "boolean"
}
},
"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/person/search" # -> 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/person/search");
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/person/search")
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/6689.json, and this resource appears in /discovery/resources and /discovery/search.