Skip to main content
POST
/
monitors
/
export
Export monitors data
curl --request POST \
  --url https://api.example.com/monitors/export \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "format": "json",
  "startDate": "<string>",
  "endDate": "<string>",
  "fields": [
    "<string>"
  ],
  "projectId": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
format
enum<string>
required

Format of the export file

Available options:
json,
csv,
excel
startDate
string
required

Start date for filtering data (ISO format)

endDate
string
required

End date for filtering data (ISO format)

fields
string[]
required

Fields to include in the export

projectId
string

Optional project ID for filtering

Response

200

Monitors exported successfully