Developer Reference
C.H. Robinson
292 office locations across 9 global regions and 5 service categories. Search by region, category, or keyword.
GET
/api/chrobinson-location?region=:id&category=:cat
C.H. Robinson Offices by Region
Look up C.H. Robinson offices by region ID, optionally filtered by service category.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
region
required
|
integer
|
Region ID: 1=North America, 2=Europe, 3=Asia, 4=South America, 5=Oceania, 6=Africa, 7=Middle East, 9=Other |
category
optional
|
string
|
Service category: Surface Transportation & Logistics, Global Forwarding, Corporate, Robinson Fresh, Robinson Managed Solutions |
Code Examples
curl "https://freightapis.dev/api/chrobinson-location?region=1" \
-H "Authorization: Bearer nmfc_live_xxxxxxxxxxxxxxxxxxxx"
GET
/api/chrobinson-location/search?q=:query
Search C.H. Robinson Offices
Full-text search across office names, addresses, and categories. Paginated results.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
q
required
|
string
|
Search query (min 2 characters) |
page
optional
|
integer
|
Page number (default: 1) |
curl "https://freightapis.dev/api/chrobinson-location/search?q=chicago" \
-H "Authorization: Bearer nmfc_live_xxxxxxxxxxxxxxxxxxxx"
GET
/api/chrobinson-location/category/:name
Filter by Service Category
Get all offices in a specific service category. Paginated results ordered by region.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
name
required
|
string
|
URL-encoded category name (e.g., Global%20Forwarding) |
page
optional
|
integer
|
Page number (default: 1) |
curl "https://freightapis.dev/api/chrobinson-location/category/Global%20Forwarding" \
-H "Authorization: Bearer nmfc_live_xxxxxxxxxxxxxxxxxxxx"
POST
/api/chrobinson-location/batch
Batch Region Lookup
Retrieve offices for multiple regions in a single request.
Request Body
| Parameter | Type | Description |
|---|---|---|
region_ids
required
|
integer[]
|
Array of region IDs (1-7, 9) |
curl -X POST "https://freightapis.dev/api/chrobinson-location/batch" \
-H "Authorization: Bearer nmfc_live_xxxxxxxxxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{"region_ids": [1, 2, 3]}'
GET
/api/chrobinson-location/coverage
C.H. Robinson Coverage Statistics
Returns aggregate statistics: total offices, breakdown by region and service category.
curl "https://freightapis.dev/api/chrobinson-location/coverage" \
-H "Authorization: Bearer nmfc_live_xxxxxxxxxxxxxxxxxxxx"