curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/people/{id}"{
"id": "<string>",
"name": "<string>",
"current_role": {
"company": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"domain": "<string>",
"image_mode": "AUTOMATIC",
"image_url": "<string>",
"slug": "<string>",
"ticker": "<string>"
},
"is_current": true,
"ended_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"title": "<string>"
},
"description": "<string>",
"detailed_description": "<string>",
"external_links": [
{
"platform": {
"display_name": "<string>",
"name": "<string>",
"type": "podcast_directory"
},
"attributes": [
{
"name": "<string>",
"value": "<unknown>",
"category": "<string>",
"observed_at": "2023-11-07T05:31:56Z"
}
],
"identifier": "<string>",
"url": "<string>"
}
],
"image_url": "<string>",
"knowledge_graph_entity": {
"id": "<string>",
"slug": "<string>",
"wikipedia_url": "<string>"
},
"roles": [
{
"company": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"domain": "<string>",
"image_mode": "AUTOMATIC",
"image_url": "<string>",
"slug": "<string>",
"ticker": "<string>"
},
"is_current": true,
"ended_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"title": "<string>"
}
],
"slug": "<string>"
}{
"detail": "Property foo is required but is missing.",
"error_code": "<string>",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"resolve": {
"message": "<string>",
"action": "<string>",
"endpoint": "<string>",
"method": "<string>",
"url": "<string>"
},
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}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. The parameter accepts the Person slug (recommended) or the encoded Person UUID.
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/people/{id}"{
"id": "<string>",
"name": "<string>",
"current_role": {
"company": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"domain": "<string>",
"image_mode": "AUTOMATIC",
"image_url": "<string>",
"slug": "<string>",
"ticker": "<string>"
},
"is_current": true,
"ended_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"title": "<string>"
},
"description": "<string>",
"detailed_description": "<string>",
"external_links": [
{
"platform": {
"display_name": "<string>",
"name": "<string>",
"type": "podcast_directory"
},
"attributes": [
{
"name": "<string>",
"value": "<unknown>",
"category": "<string>",
"observed_at": "2023-11-07T05:31:56Z"
}
],
"identifier": "<string>",
"url": "<string>"
}
],
"image_url": "<string>",
"knowledge_graph_entity": {
"id": "<string>",
"slug": "<string>",
"wikipedia_url": "<string>"
},
"roles": [
{
"company": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"domain": "<string>",
"image_mode": "AUTOMATIC",
"image_url": "<string>",
"slug": "<string>",
"ticker": "<string>"
},
"is_current": true,
"ended_at": "2023-11-07T05:31:56Z",
"started_at": "2023-11-07T05:31:56Z",
"title": "<string>"
}
],
"slug": "<string>"
}{
"detail": "Property foo is required but is missing.",
"error_code": "<string>",
"errors": [
{
"location": "<string>",
"message": "<string>",
"value": "<unknown>"
}
],
"instance": "https://example.com/error-log/abc123",
"resolve": {
"message": "<string>",
"action": "<string>",
"endpoint": "<string>",
"method": "<string>",
"url": "<string>"
},
"status": 400,
"title": "Bad Request",
"type": "https://example.com/errors/example"
}Authorizations
Pass your API key in the X-API-Key header (recommended).
Path Parameters
Person identifier. Accepts the Person slug (recommended) or the encoded Person UUID returned as 'id' on every Person payload.
Response
OK
Encoded Person identifier
Display name
The Person's most recent company role, when known.
Show child attributes
Show child attributes
Short bio (one-liner) curated for the Person.
Longer Wikipedia-grounded bio when available.
Known third-party profiles (LinkedIn, Wikipedia, social). Discovered asynchronously; a freshly-resolved Person may not yet have all platforms populated.
Show child attributes
Show child attributes
Canonical headshot URL when one is known for the Person
Linked knowledge graph entity, when one exists. Secondary identifier — most callers should rely on id/slug.
Show child attributes
Show child attributes
All known company roles, ordered most-recent first. Includes the current role at index 0.
Show child attributes
Show child attributes
Stable human-readable handle (e.g. 'satya-nadella'). Recommended canonical identifier on every Particle Pro person surface.
Was this page helpful?