Skip to main content
GET
/
v1
/
companies
/
{id}
/
products
cURL
curl -H "X-API-Key: $PARTICLE_API_KEY" \
  "https://api.particle.pro/v1/companies/{id}/products"
{
  "data": [
    {
      "company_id": "<string>",
      "id": "<string>",
      "level": "<string>",
      "name": "<string>",
      "status": "<string>",
      "children": "<array>",
      "description": "<string>",
      "product_url": "<string>",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "cursor": "<string>"
}

Authorizations

X-API-Key
string
header
required

Pass your API key in the X-API-Key header (recommended).

Path Parameters

id
string
required

Company slug (e.g., 'apple'), domain (e.g., 'apple.com'), or ID

Query Parameters

status
string[] | null

Filter by lifecycle status (default: active), comma-separated for union.

Example:
["active"]

Response

OK

data
object[] | null
required

List of results

has_more
boolean
required

Whether more results exist

cursor
string

Pass to next request for more results