Skip to main content
GET
/
api
/
v1
/
companies
/
list
List companies
curl --request GET \
  --url https://rest-api.captide.co/api/v1/companies/list \
  --header 'X-API-Key: <api-key>'
{
  "companies": [
    {
      "id": "<string>",
      "name": "<string>",
      "tickers": [
        "<string>"
      ],
      "countries": [
        "<string>"
      ],
      "filesWithSec": true
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Query Parameters

tickers
string | null

Comma-separated list of company tickers (supports both base tickers like 'ITX' and suffixed tickers like 'ITX.MC')

Examples:

"STO.AX,ASML.AS"

countries
string | null

Comma-separated list of companies' country of domicile (ISO 3166-1 alpha-2)

Examples:

"AU,NL"

filesWithSec
boolean | null

Whether the companies file reports with the SEC

Examples:

false

ids
string | null

Comma-separated list of unique company IDs

Examples:

"77848abe-a215-41b7-8950-86e89ea1fadc,91f6c6da-478f-4161-b451-aa5177cc7fb9"

limit
integer | null
default:100

Maximum number of records to return. Required range: 1 <= x <= 1000

Required range: 1 <= x <= 1000
Examples:

100

Response

List of companies matching the filter criteria

Response model for company list results.

companies
CompanyResponse · object[]
required

List of companies matching the filter criteria