GET
/
public
/
v3
/
event-types
curl --request GET \
  --url https://api.quartr.com/public/v3/event-types \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": 26,
      "name": "Q1",
      "parent": "Earnings Call",
      "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

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"

Response

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

Was this page helpful?