curl --request GET \
--url https://api.quartr.com/public/v3/companies \
--header 'x-api-key: <api-key>'{
"data": [
{
"country": "US",
"id": 4742,
"name": "Apple Inc.",
"updatedAt": "2021-09-15T15:00:00.000Z",
"createdAt": "2021-09-01T12:00:00.000Z",
"backlinkUrl": "https://example.com",
"displayName": "Apple",
"tickers": [
{
"ticker": "AAPL",
"exchange": "BASE"
},
{
"ticker": "AAPL",
"exchange": "NasdaqGS"
}
],
"isins": [
"US0378331005"
],
"cik": "0000320193"
}
],
"pagination": {
"nextCursor": 10
}
}curl --request GET \
--url https://api.quartr.com/public/v3/companies \
--header 'x-api-key: <api-key>'{
"data": [
{
"country": "US",
"id": 4742,
"name": "Apple Inc.",
"updatedAt": "2021-09-15T15:00:00.000Z",
"createdAt": "2021-09-01T12:00:00.000Z",
"backlinkUrl": "https://example.com",
"displayName": "Apple",
"tickers": [
{
"ticker": "AAPL",
"exchange": "BASE"
},
{
"ticker": "AAPL",
"exchange": "NasdaqGS"
}
],
"isins": [
"US0378331005"
],
"cik": "0000320193"
}
],
"pagination": {
"nextCursor": 10
}
}Comma-separated list of country codes (ISO 3166-1 alpha-2)
"US,CA"
Exchange symbols, without blankspace, to filter by.
"NasdaqCM,NasdaqGS,NYSE"
Comma-separated list of company tickers
"AAPL,AMZN"
The maximum number of items to return in a single request.
1 <= x <= 50010
A unique identifier pointing to the starting position for the next set of results.
x >= 02432
The direction of the sort order (id field).
asc, desc "asc"
Comma-separated list of ISINs
"US0378331005,US0231351067"
Comma-separated list of CIKs (SEC Central Index Keys)
"0000320193,0001018724"
Query data that was updated before this date (ISO 8601)
"2024-01-24T12:00:00Z"
Query data that was updated after this date (ISO 8601)
"2025-01-12T15:00:00Z"
Comma-separated list of company IDs
"4024,5025,6026"
Was this page helpful?