check_exclusive_bundle_bulk

Query your bundles in bulk.

Request Body

{ 
  "start_time": "2025-08-20T17:00:00Z", // ISO8601 formated datatime, query from this time
  "end_time": "2025-08-20T23:59:59Z",   // ISO8601 formated datatime, query to this time
  "limit": 100,                         // (Optional) Limit response to first N number
  "pending_payment": true               // (Optional) If true, will only return bundles that have landed, but pending refund. Default false which returns all bundles from timespan
}

Responses are limited to a maximum of 100,000 bundles, and a timespan of 7 days. Response will include a "last_bundle_time" indicating the timestamp of the last bundle returned, allowing querying from that timestamp if you hit the maximum bundle returned number.

Example Request

curl -X POST https://boost.quasar.win/check_exclusive_bundle_bulk \
     -H "Content-Type: application/json" \
     -H 'Authorization: your-api-key' \
     -d '{
           "start_time": "2025-08-20T17:00:00Z",
           "end_time": "2025-08-20T23:59:59Z", 
           "limit": 10,
         }'

Example Response

Authentication

To authenticate your requests, include your API key in the Authorization header of each request.

Last updated