MyEZToll
GET/api/partner/v1/tolls

List tolls

List priced tolls (agency + GPS) for your cars over a period.

Authorization

X-Api-Key header

Send your partner key on every request. The key is bound to exactly one owner account.

Query parameters

fromstringquery

Start of the window (UTC, inclusive). Defaults to 30 days before to.

tostringquery

End of the window (UTC, exclusive). Defaults to now.

carIdstringquery

Restrict to one of your cars (our id or your external car id). Omit for the whole fleet over the period — neither form requires a booking or a driver.

sourcestringquery

Which toll sources to include.

Allowed values:allagencyagentgpsDefault: all
bookingIdstringquery

Restrict to ONE booking (our id or your external booking id). The booking already defines its window, so from / to are ignored when this is set. Equivalent to GET /bookings/{bookingId}/tolls.

pageintegerquery

1-based page number.

Default: 1
pageSizeintegerquery

Rows per page. Capped at 1000.

Default: 100

Response

200 · application/json
successbooleanrequired
dataobject

The shape of data on every list endpoint. items is added by each list's own schema.

pageintegerrequired

1-based page number you asked for.

pageSizeintegerrequired
totalintegerrequired

Rows in the whole filtered set

hasMorebooleanrequired

Another page is waiting — request page+1.

itemsToll[]
errorstringnullable

Status codes

200One page of tolls in the window.
400Validation error.
401Missing, unknown or revoked API key.