Discover/chrobinson.com API
live

chrobinson.com APIchrobinson.com

Search available freight loads, get real-time load board stats, and retrieve carrier services from C.H. Robinson via a single REST API.

Endpoints
6
Updated
11d ago
Try it
Shipping mode. A for All.
Number of results per page
Pickup date end in YYYY-MM-DD format. Defaults to tomorrow (UTC).
Origin city name
Origin state code (e.g., IL)
Pickup date start in YYYY-MM-DD format. Defaults to today (UTC).
Origin search radius in miles
Trailer equipment type (e.g., Van, Flatbed, Reefer)
Origin latitude
Destination city name
Origin longitude
Destination state code (e.g., TX)
Destination search radius in miles
Destination latitude
Destination longitude
api.parse.bot/scraper/51f78174-cf11-4299-ae0c-0c59fd644885/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X POST 'https://api.parse.bot/scraper/51f78174-cf11-4299-ae0c-0c59fd644885/search_loads' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "mode": "A",
  "page_size": "20",
  "origin_city": "Chicago",
  "origin_state": "IL",
  "origin_latitude": "41.8781",
  "origin_longitude": "-87.6298"
}'
All endpoints · 6 totalclick to expand

Search for available freight loads on the public load board. Returns a list of shipments with origin, destination, distance, weight, and equipment details. Destination coordinates must be provided in the request body only (not query params) to avoid upstream 500 errors.

Input
ParamTypeDescription
modestringShipping mode. A for All.
page_sizeintegerNumber of results per page
pickup_endstringPickup date end in YYYY-MM-DD format. Defaults to tomorrow (UTC).
origin_cityrequiredstringOrigin city name
origin_staterequiredstringOrigin state code (e.g., IL)
pickup_startstringPickup date start in YYYY-MM-DD format. Defaults to today (UTC).
origin_radiusintegerOrigin search radius in miles
equipment_typestringTrailer equipment type (e.g., Van, Flatbed, Reefer)
origin_latituderequirednumberOrigin latitude
destination_citystringDestination city name
origin_longituderequirednumberOrigin longitude
destination_statestringDestination state code (e.g., TX)
destination_radiusintegerDestination search radius in miles
destination_latitudenumberDestination latitude
destination_longitudenumberDestination longitude
Response
{
  "type": "object",
  "fields": {
    "shipments": "array of shipment objects with origin, destination, distance, weight, equipment, modes, stops, and activityDate",
    "totalShipmentCount": "integer total number of matching shipments"
  },
  "sample": {
    "data": {
      "shipments": [
        {
          "modes": [
            "R"
          ],
          "stops": [
            {
              "stopType": "0",
              "warehouseInformation": {
                "city": "Elk Grove Village",
                "openTime": "13:00:00",
                "closeTime": "13:00:00",
                "stateCode": "IL",
                "countryCode": "US"
              },
              "isScheduledOpenTimeSpecified": true,
              "calculatedArriveByEndDateTime": "2026-05-08T15:00:00",
              "isScheduledCloseTimeSpecified": true,
              "calculatedArriveByStartDateTime": "2026-05-08T10:00:00"
            }
          ],
          "origin": {
            "city": "Elk Grove Village",
            "stateCode": "IL",
            "coordinate": {
              "sOriginDeadHead": ""
            },
            "countryCode": "US"
          },
          "weight": {
            "pounds": 39625
          },
          "distance": {
            "miles": 898
          },
          "equipment": {
            "width": {
              "standard": 0
            },
            "height": {
              "standard": 0
            },
            "length": {
              "standard": 53
            }
          },
          "destination": {
            "city": "Tyler",
            "stateCode": "TX",
            "countryCode": "US"
          },
          "activityDate": "2026-05-08T00:00:00",
          "externalShipmentId": "bfc4ba30-a7e1-f01b-12c4-53956f747b93"
        }
      ],
      "totalShipmentCount": 11
    },
    "status": "success"
  }
}

About the chrobinson.com API

This API exposes 6 endpoints covering C.H. Robinson's public load board, returning shipment details across origin, destination, equipment type, weight, and distance. The search_loads endpoint accepts origin city/state, pickup date range, and equipment type to return matching shipments and a total count, while get_load_board_stats surfaces live aggregate counts for dry van, reefer, and flatbed loads without any query parameters.

Load Search and Board Statistics

The search_loads endpoint accepts origin_city, origin_state, and optional parameters including equipment_type (Van, Flatbed, Reefer), origin_radius, pickup_start/pickup_end in YYYY-MM-DD format, and a page_size for pagination. It returns an array of shipment objects — each carrying origin, destination, distance, weight, equipment details, modes, stop count, and activityDate — alongside a totalShipmentCount integer for the full result set. Note that destination coordinates must be passed in the request body, not as query parameters, to avoid server errors.

get_load_board_stats requires no inputs and returns four comma-formatted string fields: total_available_loads, dry_van_loads, reefer_loads, and flatbed_loads. These reflect current aggregate counts from the public load board.

Location Autocomplete

The get_location_autocomplete endpoint accepts a query string (city name or postal code) and returns an array of location objects. Each object includes displayName, coordinate (latitude and longitude), cityName, stateProvinceCode, countryCode, and country. This is useful for building origin/destination inputs before calling search_loads.

Services and Industry Catalog

Three catalog endpoints return static data about C.H. Robinson's offerings. get_freight_services returns a services array with each service's name and URL path. get_carrier_services returns a structured carrier_services object segmented into financial_services, programs, technology, and onboarding arrays. get_industries returns an industries array listing the vertical markets C.H. Robinson serves, each with a name and URL path.

Common use cases
  • Monitor available flatbed load counts in real time using get_load_board_stats for carrier dispatch dashboards.
  • Filter freight shipments by equipment type and pickup date range using search_loads for load matching tools.
  • Build origin/destination autocomplete inputs using get_location_autocomplete with city or ZIP query strings.
  • Map load density by origin state and equipment type by paginating through search_loads results.
  • Aggregate carrier financial programs and technology offerings from get_carrier_services for competitive research.
  • Enumerate industry verticals served by a major 3PL using get_industries for market segmentation analysis.
  • Track changes in total available loads over time by polling get_load_board_stats on a schedule.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does C.H. Robinson have an official developer API?+
C.H. Robinson offers a developer portal at developer.chrobinson.com with APIs for carriers and shippers, but those require a business account and formal onboarding. This Parse API provides access to publicly available load board and service data without that requirement.
What does the `search_loads` endpoint return for each shipment?+
Each shipment object in the shipments array includes origin and destination details, distance, weight, equipment type, available shipping modes, stop information, and an activityDate. The totalShipmentCount field gives the full count of matching loads regardless of page_size.
Does the API return individual load pricing or rate quotes?+
Not currently. The search_loads endpoint returns shipment metadata including weight, equipment, and routing — but no rate or price fields are included in the response. You can fork this API on Parse and revise it to add a rate-retrieval endpoint if that data becomes accessible.
Can I search loads by destination city rather than just origin?+
The search_loads endpoint is structured around origin parameters (origin_city, origin_state, origin_radius). Destination filtering isn't exposed as a named input parameter. You can fork the API on Parse and revise it to add destination-based filtering if that capability is needed.
How should I handle the coordinate requirement for destination in `search_loads`?+
Destination coordinates must be included in the POST request body. Passing them as query parameters causes upstream server errors. Use get_location_autocomplete first to resolve a destination city to its latitude/longitude, then include those coordinates in the body of your search_loads request.
Page content last updated . Spec covers 6 endpoints from chrobinson.com.
Related APIs in MarketplaceSee all →
mouser.com API
mouser.com API
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.