Get capacity suggestions
This end-point is used to get capacity suggestions from within your network. This is a high throughput end-point and can handle thousands of requests per second. It is highly available, fault tolerant, and scalable.
Query Parameters
The desired origin city.
The desired origin state code.
The desired destination city.
The desired destination state code.
Possible values: [Box truck
, Conestoga
, Deck
, Double drop
, Dry bulk
, Flatbed
, Power only
, Reefer
, Step deck
, Van
]
A comma separated enum of equipment types. If not provided, all equipment types will be considered.
The desired page number of the results if there are multiple pages. The response will dictacte the number of pages. When not provided, the default is 1. Each page will have a max of 100 results.
Header Parameters
API Key that a Chaine Admin or Owner creates in their workspace under developer settings.
The content type of the request. Currently we accept application/json or application/xml.
- 200
Successfully retrieved capacity suggestions
Schema
- Array [
- Array [
- ]
- ]
capacity object[]
averageRate object, null
The average (flat) rate of the carrier for the given origin and destination pair
The currency of the rate. i.e. USD or CAD
The value of the average rate
companyMembers object[]
The members of a carrier's company. This will include all the dispatchers and owners of the workspace along with their contact details.
The email of the user
The phone number of the user
The name of the user
The role of the member in the workspace. Either "Dispatcher", "Driver" or "Management"
The name of the company
The URL to the company's page on Chaine
The type of contract with the carrier. Either "Contract" or "Spot"
The DOT number of the company
An array of unique equipment types the carrier has done in addition to what is listed in the standard equipment types in truckTypes
An array of equipment types the carrier has done on this lane. This is an enum of 'Box truck', 'Conestoga', 'Deck', 'Double drop', 'Dry bulk', 'Flatbed', 'Other', 'Power only', 'Reefer', 'Step deck', 'Van'
The unique ID of the workspace in Chaine
The MC number of the workspace
The number of trips the carrier has completed
The URL to that links back to the capacity search in Chaine
pagination object
The current page number of the results. Each page will have a max of 100 results.
A boolean value that indicates if there are more results available. Will return true if there are no more results.
The next page number of the results. If there are no more results, this will be null.
The previous page number of the results. If there are no previous results, this will be null.
The total number of pages of the results.
{
"capacity": [
{
"companyMembers": [
{
"email": "janice@123trucking.com",
"phone": "123-456-7890",
"name": "Janice Smith",
"role": "Dispatcher"
}
],
"companyName": "Warren Transport Inc",
"companyPageURL": "https://chaineapp.com/abc-logistics",
"contractType": "Contract",
"dotNumber": "1896",
"equipmentTags": [
"48 ft",
"6' tarps"
],
"equipmentTypes": [
"Flatbed"
],
"id": "215c53bf-c03a-4b03-a570-075bff33d8d2",
"mcNumber": "114211",
"numberOfTrips": 1
}
],
"capacitySearchURL": "https://dev.chaineapp.com/dev-brokerage/network?destinationCity=Des+Moines&destinationStateCode=IA&originCity=Atlanta&originStateCode=GA",
"pagination": {
"currentPage": 1,
"isLastPage": true,
"nextPage": 2,
"previousPage": 1,
"totalPages": 10
}
}