Skip to main content
GET
/
data_exports
/
{data_export_token}
Get status of data export
curl --request GET \
  --url https://api.vantage.sh/v2/data_exports/{data_export_token} \
  --header 'Authorization: Bearer <token>'
{
  "token": "dta_xprt_964b2adb9bff37fb",
  "status": "completed",
  "created_at": "2025-03-27T20:46:31Z",
  "export_type": "cost_report",
  "manifest": {
    "files": [
      "https://example.com/file1.csv"
    ],
    "completed_at": "2025-03-27T20:46:31Z",
    "valid_until": "2025-03-28T20:46:31Z"
  },
  "attributes": {
    "report_token": null,
    "start_date": null,
    "end_date": null,
    "groupings": [],
    "vql": null,
    "settings": null,
    "date_bin": null
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

data_export_token
string
required

Response

Returns the completed data export and its manifest. If it is still pending, the response will be a 202 and the caller should check the Location and Retry-After headers to determine where and how long to wait before polling again.

DataExport model

token
string
Example:

"dta_xprt_abcd1234567890"

status
string
Example:

"pending"

created_at
string
Example:

"2025-03-20T12:00:00Z"

export_type
string
Example:

"cost_report"

manifest
object
attributes
string