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>'
[
  {
    "id": "77848abe-a215-41b7-8950-86e89ea1fadc",
    "name": "Santos",
    "tickers": [
      "STO.AX"
    ],
    "countries": [
      "AU"
    ],
    "filesWithSec": false
  }
]

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')

countries
string | null

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

filesWithSec
boolean | null

Whether the companies file reports with the SEC

ids
string | null

Comma-separated list of unique company IDs

limit
integer | null
default:100

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

Required range: 1 <= x <= 1000

Response

200
application/json

Successful list results

The response is of type CompanyListResponse · object[].