Preview employee search results with summary data
Preview employee search results with summary data. Pass filters in the request body. Returns matching professionals with key fields: id, full_name, headline, location, company, title, and relevance score. Use the 'id' field with the 'Base Employee Collect by ID' endpoint to get full profiles.
21000 (raw units)
price
8
calls / 30d
1
unique payers
2026-08-20
updated
Provider
x402.orthogonal.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x12E8DE0712aEbe6579A9E16deE2AE9FfCc4E7dC2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "21000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "3DCTe25GTwf78ViCUwXxUxf4cmkvnguCE7nnUBfZNDAE",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "21000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:143",
"payTo": "0x12E8DE0712aEbe6579A9E16deE2AE9FfCc4E7dC2",
"asset": "0x754704Bc059F8C67012fEd69BC8A327a5aafb603",
"amount": "21000",
"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": {
"properties": {
"country": {
"description": "Country name (e.g., 'United States')",
"type": "string"
},
"experience_company_name": {
"description": "Company name from work experience (e.g., 'Google')",
"type": "string"
},
"experience_title": {
"description": "Job title from work experience (e.g., 'Senior Engineer')",
"type": "string"
},
"full_name": {
"description": "Full name of the person (e.g., 'Sundar Pichai')",
"type": "string"
},
"headline": {
"description": "Professional headline or current job title (e.g., 'CEO')",
"type": "string"
},
"industry": {
"description": "Industry (e.g., 'Software Development')",
"type": "string"
},
"location": {
"description": "Location (e.g., 'San Francisco')",
"type": "string"
},
"skill": {
"description": "Professional skill (e.g., 'Python', 'Machine Learning')",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.orthogonal.com/coresignal/v2/employee_base/search/filter/preview" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.orthogonal.com/coresignal/v2/employee_base/search/filter/preview");
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://x402.orthogonal.com/coresignal/v2/employee_base/search/filter/preview")
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/15027.json, and this resource appears in /discovery/resources and /discovery/search.