GET
/
api
/
v1
/
carriers
curl --request GET \
  --url https://api.fleetworks.ai/api/v1/carriers \
  --header 'Authorization: Bearer <token>'
{
  "carriers": [
    {
      "mcNumber": "123456",
      "dotNumber": 1234,
      "name": "FleetWorks Trucking",
      "address": "123 1st St, New York, NY",
      "fleetsize": 3,
      "avgRate": "1234",
      "lanes": [
        {
          "origin": "New York, NY",
          "destination": "Chicago, IL",
          "avgRate": "1234",
          "totalBids": 1
        }
      ],
      "ruleAssessment": "pass"
    }
  ],
  "pagination": {
    "total": 1
  }
}

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

origin
string
required

Origin location for the lane (city, state format)

destination
string
required

Destination location for the lane (city, state format)

radius
number

Search radius in miles around origin and destination points

Required range: x >= 0
equipmentTypes
string

Comma-separated list of equipment types to filter by

Response

200
application/json
Success
carriers
object[]
pagination
object