Skip to main content
GET
/
v1
/
analytics
/
volume
Get Volume Data
curl --request GET \
  --url https://sandbox-api.borderless.xyz/v1/analytics/volume \
  --header 'Authorization: Bearer <token>'
{
  "volumes": [
    {
      "date": "2025-10-18",
      "totalCount": 20,
      "completedCount": 18,
      "completedVolume": "100000.00",
      "volumeAsset": "USD"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

fromDate
string

Start date for the query in ISO 8601 format (YYYY-MM-DD). Defaults to 1 month ago.

Example:

"2025-01-01"

toDate
string

End date for the query in ISO 8601 format (YYYY-MM-DD). Defaults to current date.

Example:

"2025-12-31"

Response

200 - application/json

Volume data grouped by date.

volumes
object[]
required

Array of volume data grouped by date.