Shipper Lanes | Genlogs API Docs

Shipper Lanes Recommendation Endpoint

The shipper lanes recommendation endpoint allows users to retrieve a list of facilities that ship from the specified origin location to the specified destination location within a given distance radius. The shippers_in_origin array is the primary fields of interest. shippers_in_destination is merely a list of facilities in the specified destination area.

Authentication

Include the following headers in your requests:

Permissions

Make sure that your API user is created with a role that has external-api-shipper-lanes permission.

Endpoint

Query Parameters

Response

Response Body

Request Example:

curl -X GET 'https://api.genlogs.io/shipper/lanes?name=coca+cola&radius=50&origin_city=Tennessee+City&origin_state=Tennessee&destination_city=Taswell&destination_state=Indiana&origin_radius=50&destination_radius=50' \
-H 'Access-Token: {access_token}' \
-H 'x-api-key: {your_api_key}'

Get Shipper Lanes Based on Coordinates and Radius

Endpoint

https://api.genlogs.io/shipper/lanes

Query Parameters

Header Parameters

Responses

{
  "shippers_in_destination": [
    {
      "contact_phone": "text",
      "contact_url": "text",
      "facility_name": "text",
      "formatted_address": "text",
      "id": "text",
      "lat": 1,
      "lon": 1,
      "operating_hours": "text",
      "place_category": "text",
      "equipment_pairings": [
        "Dry Van",
        "Box Truck"
      ]
    }
  ],
  "shippers_in_origin": [
    {
      "contact_phone": "text",
      "contact_url": "text",
      "facility_name": "text",
      "formatted_address": "text",
      "id": "text",
      "lat": 1,
      "lon": 1,
      "operating_hours": "text",
      "place_category": "text",
      "equipment_pairings": [
        "Dry Van",
        "Box Truck"
      ]
    }
  ]
}

Last updated 16 days ago.