mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Use when an agent needs pdl people enrich

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.

Do you run api.oblique.markets? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
280000 (raw units)
price
2
calls / 30d
2
unique payers
2026-08-30
updated

Provider

api.oblique.markets · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "280000",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "280000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "company": "Company or organization",
          "domain": "Company domain",
          "email": "Person email address",
          "first_name": "First name",
          "last_name": "Last name",
          "linkedin_url": "LinkedIn profile URL",
          "name": "Full name"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "identity_hash": "sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
          "match": {
            "confidence": "high",
            "input_signals": [
              "email"
            ]
          },
          "person": {
            "company": "Analytical Engines",
            "company_domain": "analytical.example",
            "email": "[email protected]",
            "email_domain": "example.com",
            "first_name": "Ada",
            "full_name": "Ada Lovelace",
            "id": "a1b2c3d4e5f60718",
            "job_title": null,
            "last_name": "Lovelace",
            "linkedin_url": null,
            "location": null,
            "profiles": []
          },
          "retrieved_at": "2026-08-24T12:00:00.000Z",
          "source": "oblique-normalized-identity",
          "status": "matched"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "company": {
                  "description": "Company or organization",
                  "type": "string"
                },
                "domain": {
                  "description": "Company domain",
                  "type": "string"
                },
                "email": {
                  "description": "Person email address",
                  "type": "string"
                },
                "first_name": {
                  "description": "First name",
                  "type": "string"
                },
                "last_name": {
                  "description": "Last name",
                  "type": "string"
                },
                "linkedin_url": {
                  "description": "LinkedIn profile URL",
                  "type": "string"
                },
                "name": {
                  "description": "Full name",
                  "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"
        },
        "output": {
          "properties": {
            "identity_hash": {
              "type": "string"
            },
            "match": {
              "properties": {
                "confidence": {
                  "type": "string"
                },
                "input_signals": {
                  "items": {
                    "type": "string"
                  },
                  "type": "array"
                }
              },
              "type": "object"
            },
            "person": {
              "properties": {
                "company": {
                  "type": "string"
                },
                "company_domain": {
                  "type": "string"
                },
                "email": {
                  "type": "string"
                },
                "email_domain": {
                  "type": "string"
                },
                "first_name": {
                  "type": "string"
                },
                "full_name": {
                  "type": "string"
                },
                "id": {
                  "type": "string"
                },
                "job_title": {
                  "type": "null"
                },
                "last_name": {
                  "type": "string"
                },
                "linkedin_url": {
                  "type": "null"
                },
                "location": {
                  "type": "null"
                },
                "profiles": {
                  "type": "array"
                }
              },
              "type": "object"
            },
            "retrieved_at": {
              "type": "string"
            },
            "source": {
              "type": "string"
            },
            "status": {
              "type": "string"
            }
          },
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.oblique.markets/api/v1/paid/pdl-people-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://api.oblique.markets/api/v1/paid/pdl-people-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://api.oblique.markets/api/v1/paid/pdl-people-enrich")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/562.json, and this resource appears in /discovery/resources and /discovery/search.