POST
/
data
/
export
curl --request POST \
  --url https://api.uplift.ai/v1/data/export \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "startTime": 123,
  "endTime": 123,
  "athletes": [
    "<string>"
  ],
  "activity": "agility",
  "movement": "cutting",
  "dateMode": "last_modified",
  "metrics": [
    "<string>"
  ],
  "row_filter_column": "<string>"
}'
{
  "jobId": "<string>"
}

Tier Services

The data export endpoint is tier-based, and there are currently 3 service tiers:

Premium

The Premium Tier has no restrictions on data export. You can access all available data without any limitations.

Base

The Base Tier does not allow historical data requests before 12/12/2024. Be mindful of this when setting the startTime and endTime parameters. If you need access to older data, we recommend contacting our sales team to discuss upgrading to the Premium Tier.

Unavailable

Data export is not available without a subscription to either the Base or Premium service. You must subscribe to one of these tiers to use the data export functionality.


Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Export request successfully created. Returns a job ID to track the export status.

The response is of type object.