How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Loadsmart Load Offers API

This API allows third parties to search and acceptavailable Offers.## Webhook eventsThere are few webhook events that can be triggered related to Load Offers API.The following example refers to the webhook events `load_carrier_bounced` and `load_cancelled`:```{ "event": "load_carrier_bounced", "data": { "load_id": "2ed37107-ebe7-4a60-a20f-01d4e74355c8", "load": { "id": "2ed37107-ebe7-4a60-a20f-01d4e74355c8", "active_offer": { "id": "ccd37107-ebe7-4a60-a20f-01d4e74355c8", "price": 1234.56 }, "carrier": { "id": "89ef54c7-52d5-44a0-b94d-df41eb1aab15", "mc": 123456, "dot": 987654 }, "commodity": "BOTTLED WATER", "distance": 353.6, "equipment_type": "DRV", "requirements": { "beer": false, "chemicals": null, "ctpat": null, "food_grade": null, "frozen": null, "hazmat": null, "hvhr": null, "pharmaceuticals": null, "produce": null, "teams": null, "tsa": null, "twic": null, "vented_vans": null, }, "stops": [ { "address": "109 Poland Spring Dr", "city": "Poland", "country": "USA", "latitude": 44.031602, "longitude": -70.355065, "state": "ME", "type": "PU", "window_end": "2019-11-28T08:00:00+00:00", "window_start": "2019-11-28T06:00:00+00:00", "window_timezone": "America/New_York", "requirements": null, "facility_info": { "avg_time_spent":{ "pickup":40, "delivery": null }, "detention_rate": 4 } }, { "address": "6 Westbelt", "city": "Wayne", "country": "USA", "latitude": 40.900033, "longitude": -74.264872, "state": "NJ", "type": "DEL", "window_end": "2019-11-29T19:00:00+00:00", "window_start": "2019-11-29T17:00:00+00:00", "window_timezone": "America/New_York", "requirements": null, "facility_info": { "avg_time_spent":{ "pickup":null, "delivery": 20 }, "detention_rate": 9 } }, ], "numberweight": 45000.0, "dimensions": {"width": 8.00, "height": 9.00, "length": 54.00} "ref_number": "41324" } }}```The following example refers to the webhook events `offer_created` and `offer_removed`:```{ "event": "offer_created", "data": { "offer": { "id": "ccd37107-ebe7-4a60-a20f-01d4e74355c8", "price": 1234.56, "load": { "equipment_type": "DRV", "commodity": "apples", "weight": 20000, "dimensions": {"width": 8.00, "height": 9.00, "length": 54.00} "distance": 50000, "stops": [ { "type": "PU", "address": "101 Collins Avenue", "city": "Miami Beach", "state": "FL", "country": "USA", "requirements": { "blind_bol": false, "drop_trailer": false, "heavy_scale_ticket": false, "light_scale_ticket": false }, "facility_info": { "avg_time_spent":{ "pickup":40, "delivery": null }, "detention_rate": 4 } "zipcode": "33139", "window_start": "2020-02-13T09:00:00", "window_end": "2018-02-13T11:00:00", "window_timezone": "America/New_York" }, { "type": "DEL", "address": "2022 Collins Avenue", "city": "Miami Beach", "state": "FL", "country": "USA", "requirements": { "blind_bol": false, "drop_trailer": false, "heavy_scale_ticket": false, "light_scale_ticket": false }, "facility_info": { "avg_time_spent":{ "pickup":null, "delivery": 20 }, "detention_rate": 9 } "window_start": "2018-02-14T16:00:00", "window_end": "2018-02-14T18:00:00", "window_timezone": "America/New_York" } ], "requirements": { "beer": false, "chemicals": false, "ctpat": false, "food_grade": false, "frozen": false, "hazmat": false, "hvhr": false, "pharmaceuticals": false, "produce": false, "teams": false, "tsa": false, "twic": false, "vented_vans": false }, "ref_number": "425631" }, "actions": { "redirect_url": "https://loadsmart.com/loads/#/eec5677f-883c-4696-b13b-7539fa98e098", "accept_url": "https://api.loadsmart.com/api/v2/load-offers/offers/ccd37107-ebe7-4a60-a20f-01d4e74355c8/accept" } } }}```

Loadsmart Load Offers API is one of 48 APIs that Loadsmart publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include Load Offers. The published artifact set on APIs.io includes an OpenAPI specification, API documentation, an API reference, and authentication docs.

This API exposes 14 operations across 10 paths. It is described by OpenAPI 3.2.0, at version 1.0.0.

Requests are made against 2 base URLs: https://api.loadsmart.com, https://api.sandbox.loadsmart.com.

14 operations 10 paths 0 schemas 2 DELETE9 GET2 POST1 PUT

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
1.0.0
Base URL
https://api.loadsmart.com
Authentication
HTTP Bearer, HTTP Bearer
Resource Areas
1

Authentication & Security 2

Loadsmart Load Offers API declares 2 security schemes for authenticating requests. It accepts HTTP bearer tokens (JWT) (Application-JWT). It accepts HTTP bearer tokens (JWT) (User-JWT).

  • Application-JWT — Authorize the request with the application context (preferred for the endpoints that support it): { "sub": "sys", "iss": "token-issuer", "exp": 1626239022, "ia…
  • User-JWT — Authorize the request with an user context. A payload example would be: { "sub": "usr:87127882-d1db-4e50-8f7c-c792a80d7c49", "iss": "token-issuer", "iat": 1517…

Paths & Operations 14

Across 10 paths, the API surfaces 14 operations — 2 DELETE, 9 GET, 2 POST, 1 PUT. Each is listed below with its method, path, parameters, and response codes.

Load Offers 14

This API allows third parties to search and accept available Offers. Webhook events There are few webhook events that can be triggered related to Load Offers API. The following ex…

GET
/api/v2/load-offers/offers
Search offers
12 params → 200400
GET
/api/v2/load-offers/offers/{offer_id}
Retrieve offer
1 param → 200
POST
/api/v2/load-offers/offers/{offer_id}/accept
Accept an offer
1 param → 202400404410412
GET
/api/v2/load-offers/offers/{offer_id}/related
Search related offers
2 params → 200400
GET
/api/v2/load-offers/loads/
List loads
→ 200400404
GET
/api/v2/load-offers/loads/{load_id}
Retrieve a load
1 param → 200404
DELETE
/api/v2/load-offers/loads/{load_id}
Drop a load
1 param body → 204400404500
GET
/api/v2/load-offers/loads/{load_id}/rate_confirmation
Download ratecon
1 param → 200403404
GET
/api/v2/load-offers/loads/{load_id}/related-offers
Search related offers
2 params → 200400
GET
/api/v2/load-offers/webhooks
List webhooks
→ 200
POST
/api/v2/load-offers/webhooks
Register webhooks
body → 201400
GET
/api/v2/load-offers/webhooks/{uuid}
Retrieve webhook
1 param → 200404
PUT
/api/v2/load-offers/webhooks/{uuid}
Update webhook
1 param body → 200400404
DELETE
/api/v2/load-offers/webhooks/{uuid}
Delete webhook
1 param → 204404

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

loadsmart-load-offers-api-openapi.yml Raw ↑

Other APIs Loadsmart publishes across the network.

Loadsmart Appointments API
Loadsmart Asset Container API
Loadsmart Asset Visit API
Loadsmart Audit Log API
Loadsmart Authentication API
Loadsmart Bids API
Loadsmart BOL API
Loadsmart Capacity API
Loadsmart Carrier API
Loadsmart Carrier Companies API
Loadsmart Carrier Users API
Loadsmart Custom Forms - Data API
Where this information came from

This is an independent, third-party profile of Loadsmart Load Offers API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.