cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/people/{slug}/external-links"{
"data": [
{
"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>"
}
],
"has_more": true,
"cursor": "<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"
}People
List a Person's external profiles
Returns every known third-party profile (LinkedIn, Wikipedia, social) for the Person. Discovery happens asynchronously via the v1.person.created enrichment subscriber; a freshly-created Person may not yet have all its profiles populated.
GET
/
v1
/
people
/
{slug}
/
external-links
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/people/{slug}/external-links"{
"data": [
{
"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>"
}
],
"has_more": true,
"cursor": "<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
ApiKeyHeaderBearerAuth
Pass your API key in the X-API-Key header (recommended).
Path Parameters
Person slug (e.g., 'satya-nadella')
Query Parameters
Results per page (default: all)
Required range:
1 <= x <= 100Opaque pagination cursor from previous response
Was this page helpful?