cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/companies/{id}/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"
}{
"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"
}Companies
List a company's external profiles
Returns every known third-party profile and identifier for the company — LinkedIn, social accounts, its registrable domain, Wikidata QID, SEC CIK, and stock tickers — as one list. Identify the company by slug (e.g., ‘apple’), domain, or ID. Pair it with GET /v1/entities/lookup, which resolves any of these identifiers back to the company.
GET
/
v1
/
companies
/
{id}
/
external-links
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
"https://api.particle.pro/v1/companies/{id}/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"
}{
"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
Company slug (e.g., 'apple'), domain (e.g., 'apple.com'), or ID
Query Parameters
Results per page (default: all)
Required range:
1 <= x <= 100Opaque pagination cursor from previous response
Was this page helpful?