This guide enables partners to integrate with our Load Posting API to create and delete freight loads in our system.
Base URI: https://api.trucksmarter.com
All endpoints require an API key passed via the Authorization
header:
Authorization: Bearer YOUR_API_KEY
Create or update one or more loads
/loads/postings/post/
POST
{
"mcNumber": 999999,
"loads": [
{
"load_id": "123456",
"equipment": ["van", "reefer"],
"contact_phone": "555-123-4567",
"length": 53,
"weight": 45000, // lbs
"requirements": ["hazmat", "team"],
"commodity": "Electronics",
"distance": 750, // mi
"general_notes": "Handle with care",
"contact_extension": "202",
"contact_email": "[email protected]",
"offer_price": 2500, // dollars
"stops": [
{
"start_time": "2025-06-01T08:00:00Z",
"end_time": "2025-06-01T10:00:00Z",
"address": "123 Main St",
"city": "Chicago",
"state": "IL",
"zip_code": "60601",
"index": 0,
"type": "P", // P (Pickup) or D (Delivery)
"business": "Warehouse A",
"latitude": 41.8781,
"longitude": -87.6298,
"country": "US",
"notes": "Use dock 5"
},
{
"start_time": "2025-06-02T14:00:00Z",
"city": "Detroit",
"state": "MI",
"index": 1,
"type": "D",
"latitude": 42.3314,
"longitude": -83.0458,
"country": "US"
}
]
}
]
}
Body
Field | Type | Required | Description |
---|---|---|---|
mcNumber |
integer |
โ | Unique identifier |
loads | Load[] |
โ | Loads |
Load
Field | Type | Required | Description |
---|---|---|---|
load_id |
string |
โ | Unique identifier |
equipment |
Equipment[] |
โ | Equipment types required |
stops |
Stop[] |
โ | Pickup/dropoff locations |
contact_phone |
string |
โย (if contact_email is used) |
Primary contact phone |
length |
integer |
โ | Length of trailer in feet |
weight |
float |
โ | Weight in pounds |
requirements |
Requirement[] |
โ | Special requirements |
commodity |
string |
โ | Commodity type |
distance |
float |
โ | Route distance in miles |
general_notes |
string |
โ | General non-stop-specific notes |
contact_email |
string |
โย (if contact_phone is used) |
Contact email |
offer_price |
float |
โ | Proposed offer price (USD) |
Stop