Skip to main content
GET
/
api
/
v1
/
bko
/
reports
/
sales-series
Get Revenue And Commission Series
curl --request GET \
  --url https://api.example.com/api/v1/bko/reports/sales-series \
  --header 'Authorization: Bearer <token>'
[
  {
    "volume": 980000,
    "revenue": 49000,
    "date": "2026-01-01T00:00:00.000Z"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

range
string

Paid at range

Example:

">=2024-01-01;<=2024-12-31"

fields
string

Comma-separated list of fields to include in the response. Supports dot notation for nested projection (e.g. id,name,user.email,trips.route.id). Unknown fields are silently dropped.

Response

OK

volume
integer
required

Transacted volume in cents

Example:

980000

revenue
integer
required

Platform net revenue in cents

Example:

49000

date
string<date-time>
required

Day

Example:

"2026-01-01T00:00:00.000Z"