# Particle Pro – List Person External Profiles

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

Returns all known third-party profiles (LinkedIn, Wikipedia, social media, etc.) linked to a named person by their slug.

## Facts

- Endpoint: GET https://api.particle.pro/v1/people/:slug/external-links
- Price: $0.04/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-list-person-external-profiles-d2eba3d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xqvk1Corp6zjYi4beefY0

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-list-person-external-profiles-d2eba3d1
```

Example prompt: Pull up all the external profiles and social links Particle Pro has on Satya Nadella — I want his LinkedIn, Wikipedia, and any other third-party pages they've indexed.

## When to prefer this

Use this endpoint when you need a comprehensive list of all third-party profiles associated with a specific named person and already know their Particle Pro slug. It is preferable to manual web search when you need structured, pre-indexed profile data across multiple platforms in a single call. Best suited for enriching contact records, journalist research, or building comprehensive profiles of public figures.

## Known failure modes

- Person slug not found — returns 404 if the slug does not match any known person in the database
- Empty result set — person exists but has no indexed external profiles
- Invalid slug format — malformed slug returns 400 bad request
- Pagination cursor expired or invalid — returns error if cursor is stale
- Rate limiting or payment failure — x402 payment not accepted or quota exceeded

## How this service works

List a Person's external profiles. Returns every known third-party profile (LinkedIn, Wikipedia, social) for the Person.

## Output

A list of external profile objects for the specified person, each including the third-party platform name and URL (e.g. LinkedIn, Wikipedia, Twitter/X, etc.). Supports pagination via cursor and limit parameters.

## 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": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "Person slug (e.g., 'satya-nadella') or the encoded Person UUID."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "format": "int64",
       "description": "Results per page (default: all)"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from previous response"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/particle-pro-list-person-external-profiles-d2eba3d1/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)
