GET
/
public
/
v3
/
documents
/
slides
curl --request GET \
  --url https://api.quartr.com/public/v3/documents/slides \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "companyId": 4742,
      "eventId": 128301,
      "fileUrl": "https://quartr.com/file.pdf",
      "id": 432907,
      "typeId": 7,
      "updatedAt": "2021-09-19T15:00:00.000Z",
      "createdAt": "2021-09-15T15:00:00.000Z"
    }
  ],
  "pagination": {
    "nextCursor": 10
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

countries
string

Comma-separated list of country codes (ISO 3166-1 alpha-2)

Example:

"US,CA"

exchanges
string

Exchange symbols, without blankspace, to filter by.

Example:

"NasdaqCM,NasdaqGS,NYSE"

tickers
string

Comma-separated list of company tickers

Example:

"AAPL,AMZN"

limit
number
default:10

The maximum number of items to return in a single request.

Required range: x <= 500
Example:

10

cursor
number
default:0

A unique identifier pointing to the starting position for the next set of results.

Required range: x >= 0
Example:

2432

direction
enum<string>
default:asc

The direction of the sort order.

Available options:
asc,
desc
Example:

"asc"

endDate
string

The end date (ISO 8601)

Example:

"2025-01-10T13:00:00Z"

startDate
string

The start date (ISO 8601)

Example:

"2024-12-12T15:00:00Z"

typeIds
string

Comma-separated list of type ids

Example:

"6,13,39"

isins
string

Comma-separated list of ISINs

Example:

"US0378331005,US0231351067"

companyIds
string

Comma-separated list of company IDs

Example:

"4024,5025,6026"

eventIds
string

Comma-separated list of event IDs

Example:

"4042,8934,16342"

documentGroupIds
string
- 1: Earnings Release
- 2: Press Release
- 3: Interim Report
- 4: Annual Report
Example:

"3,4"

updatedBefore
string

Query data that was updated before this date (ISO 8601)

Example:

"2024-01-24T12:00:00Z"

updatedAfter
string

Query data that was updated after this date (ISO 8601)

Example:

"2025-01-12T15:00:00Z"

Response

200
application/json
data
object[]
required
pagination
object
required

Was this page helpful?