Skip to content

Get load leads by posting token

Request

Security
OrgTokenBearer
Path
tokeninteger, (int32)required

The load posting's Token, as returned from POST /v2/postings/loads or GET /v2/postings/loads.

Example:123456
curl -i -X GET \
  https://developers.loadlink.ca/_mock/fm-integration/openapi/v2/leads/loads/123456 \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Leads for the load posting

Bodyapplication/json
Array [
loadTokeninteger, (int32)

Token of the load posting this lead was matched against.

dateAvailstring, (date-time)

Date/time the matched equipment is available, in UTC.

srceCountrystring

Matched equipment's source country.

srceCitystring

Matched equipment's source city.

srceStstring

Matched equipment's source state/province code.

srceLongnumber

Matched equipment's source longitude.

srceLatnumber

Matched equipment's source latitude.

destCountrystring

Matched equipment's destination country.

destCitystring

Matched equipment's destination city.

destStstring

Matched equipment's destination state/province code.

destLongnumber

Matched equipment's destination longitude.

destLatnumber

Matched equipment's destination latitude.

vehicleSizestring

Single-letter vehicle size code the matched equipment offers — see GET /v2/reference/vehicle-sizes.

vehicleTypestring

Single-letter vehicle type code(s) the matched equipment offers — see GET /v2/reference/vehicle-types.

commentstring or null

Free-text comment on the matched equipment, if any.

dfonumber

Distance in miles from the load posting's source to the matched equipment's source ("Distance From Origin").

dfdinteger, (int32)

Distance in miles from the load posting's destination to the matched equipment's destination ("Distance From Destination").

dirOstring or null

Direction code, if available.

postingAttribstring or null

Single-letter vehicle attribute code(s) the matched equipment offers, if any — see GET /v2/reference/vehicle-attributes.

createdOnstring, (date-time)

Date/time the matched equipment was posted, in UTC.

equipmentTokeninteger, (int32)

Token of the matched equipment posting.

subscriberTypestring or null

Subscriber type of the account that posted the matched equipment, if available.

lengthinteger or null, (int32)

Matched equipment's length, if specified.

weightinteger or null, (int32)

Matched equipment's weight capacity, if specified.

ratenumber or null

Rate amount for the matched equipment, if specified.

currencyinteger or null

Currency code: 0 = USD, 1 = CAD.

Enum:01
company(LeadCompany (object or null))
One of:

Contact details for the company that posted the matched equipment, if available.

]
Response
[ { "loadToken": 123456, "dateAvail": "2026-07-20T08:00:00Z", "srceCountry": "CA", "srceCity": "Brampton", "srceSt": "ON", "srceLong": -79.759, "srceLat": 43.684, "destCountry": "CA", "destCity": "Surrey", "destSt": "BC", "destLong": -122.8235, "destLat": 49.1046, "vehicleSize": "T", "vehicleType": "VR", "comment": "No tarps", "dfo": 12.4, "dfd": 8, "dirO": "N", "postingAttrib": "AZ", "createdOn": "2026-07-15T11:00:00Z", "equipmentToken": 654321, "subscriberType": "Carrier", "length": 53, "weight": 45000, "rate": 2.15, "currency": 0, "company": {} } ]