GET
/
companies
/
Get companies
curl --request GET \
  --url https://api.standardmetrics.io/v1/companies/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "city": "<string>",
      "description": "<string>",
      "firm_sector": "<string>",
      "fiscal_year_end": "<string>",
      "id": "<string>",
      "invested_fund_ids": "<string>",
      "investment_lead_id": "<string>",
      "logo_url": "<string>",
      "name": "<string>",
      "sector": "<string>",
      "slug": "<string>",
      "status": "<string>",
      "unique_ref": "<string>",
      "website": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Your valid bearer token. All Auth tokens persist for all requests. Make sure to replace Client Credential Basic tokens with Bearer tokens after retrieving your bearer token. Go to the API Reference/Setup, User Guides/Initial Setup, or API Reference/Get API Access Token page to get your token.

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

ids[]
string

Filter companies by ID. Can be specified multiple times to filter by multiple IDs (e.g., ?ids[]=123&ids[]=456&ids[]=789).

name
string

Filter companies by name. Performs case-insensitive partial matching on company names. .

Response

200 - application/json

The response is of type object.