# Particle Pro – Get Person

> Particle Pro – Get Person is a paid API for AI agents from api.particle.pro, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves a comprehensive Person profile including display name, slug, headshot, curated bio, company-role history, third-party profile links, and optional knowledge-graph cross-reference

## Facts

- Endpoint: GET https://api.particle.pro/v1/people/:id
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/particle-pro-get-person-1f0151eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RmtuIVtj4CtY-QjMk5r_0

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 particle-pro-get-person-1f0151eb
```

Example prompt: Pull up the full Particle Pro profile for Elon Musk — I want his bio, company history, headshot, and any linked social profiles. His slug is 'elon-musk'.

## When to prefer this

Use this endpoint when you need structured, curated person data including career history and profile links — particularly for public figures, executives, and professionals — and want a single authoritative payload rather than scraping multiple sources. Prefer it over generic web search when you need machine-readable, normalized data with a known schema.

## Known failure modes

- Person not found (404) if the slug or UUID does not match any record
- Invalid ID format causing a 400 error
- Payment failure via x402 protocol if USDC funds are insufficient
- Rate limiting if too many requests are made in quick succession
- Knowledge-graph cross-reference unavailable for less prominent individuals

## How this service works

Get a Person. Returns the comprehensive Person payload including display name, slug, headshot, curated bio, the Person's company-role history (most recent first), known third-party profile links, and an optional knowledge-graph cross-reference

## Output

A comprehensive Person object including: display name, URL slug, headshot image URL, curated biography, chronological company-role history (most recent first), known third-party profile links (e.g. LinkedIn, Twitter), and an optional knowledge-graph cross-reference identifier.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Person identifier. Accepts the Person slug (recommended) or the encoded Person UUID returned as 'id' on every Person payload."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-get-person-1f0151eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.particle.pro](https://www.zero.xyz/host/api.particle.pro/llms.txt)
