GET
/
api
/
v1
/
analytics
/
booked-loads
curl --request GET \
  --url https://api.fleetworks.ai/api/v1/analytics/booked-loads \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "loadId": "abcd-1234",
      "avgNegotiated": 150.25,
      "customerRate": 2000,
      "bookedRate": 1800,
      "numBids": 3,
      "carrierDot": "1234567",
      "carrierMc": "987654"
    }
  ]
}

Authorizations

Authorization
string
header
required

An authentication token that identifies the organization associated with the event. You can reach out to FleetWorks team to request a token.

Query Parameters

fromDate
string
required

ISO-8601 timestamp for the start of the window (inclusive).

toDate
string
required

ISO-8601 timestamp for the end of the window (inclusive).

Response

200
application/json

List of booked loads in the period.

The response is of type object.