{
  "info": {
    "_postman_id": "5e6b5af2-9b91-4a35-aef3-2c1e7c4d3b21",
    "name": "Lucid ELD Integration API",
    "description": "Programmatic access to Lucid ELD carrier data. Set the providerKey and companyKey collection variables (Variables tab) before sending any request.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "Company",
      "item": [
        {
          "name": "Get Company Info",
          "request": {
            "method": "GET",
            "description": "Returns the carrier's name and DOT number. Use it to confirm your credentials work.",
            "header": [
              {
                "key": "X-API-Provider-Key",
                "value": "{{providerKey}}",
                "type": "text"
              },
              {
                "key": "X-API-Company-Key",
                "value": "{{companyKey}}",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://api.lucideld.com/v2/company-info",
              "protocol": "https",
              "host": [
                "api",
                "lucideld",
                "com"
              ],
              "path": [
                "v2",
                "company-info"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Drivers",
      "item": [
        {
          "name": "List Drivers",
          "request": {
            "method": "GET",
            "description": "Returns all drivers for the carrier, paginated.",
            "header": [
              {
                "key": "X-API-Provider-Key",
                "value": "{{providerKey}}",
                "type": "text"
              },
              {
                "key": "X-API-Company-Key",
                "value": "{{companyKey}}",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://api.lucideld.com/v2/drivers?limit=100&page=1",
              "protocol": "https",
              "host": [
                "api",
                "lucideld",
                "com"
              ],
              "path": [
                "v2",
                "drivers"
              ],
              "query": [
                {
                  "key": "limit",
                  "value": "100",
                  "description": "Records per page",
                  "disabled": false
                },
                {
                  "key": "page",
                  "value": "1",
                  "description": "Page number (1-indexed)",
                  "disabled": false
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Driver by ID",
          "request": {
            "method": "GET",
            "description": "Returns profile information for a single driver.",
            "header": [
              {
                "key": "X-API-Provider-Key",
                "value": "{{providerKey}}",
                "type": "text"
              },
              {
                "key": "X-API-Company-Key",
                "value": "{{companyKey}}",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://api.lucideld.com/v2/driver/d4f7b2e9-1a3c-4d8f-b5e6-2c9a7d3f1e0b",
              "protocol": "https",
              "host": [
                "api",
                "lucideld",
                "com"
              ],
              "path": [
                "v2",
                "driver",
                ":driver_id"
              ],
              "variable": [
                {
                  "key": "driver_id",
                  "value": "d4f7b2e9-1a3c-4d8f-b5e6-2c9a7d3f1e0b",
                  "description": "The driver's unique identifier"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Latest Driver Status",
          "request": {
            "method": "GET",
            "description": "Returns current Hours of Service and duty status for one or all drivers.",
            "header": [
              {
                "key": "X-API-Provider-Key",
                "value": "{{providerKey}}",
                "type": "text"
              },
              {
                "key": "X-API-Company-Key",
                "value": "{{companyKey}}",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://api.lucideld.com/v2/latest-driver-status?limit=100&page=1",
              "protocol": "https",
              "host": [
                "api",
                "lucideld",
                "com"
              ],
              "path": [
                "v2",
                "latest-driver-status"
              ],
              "query": [
                {
                  "key": "driver_id",
                  "value": "",
                  "description": "Filter to one driver. Omit for all.",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "100",
                  "description": "Records per page",
                  "disabled": false
                },
                {
                  "key": "page",
                  "value": "1",
                  "description": "Page number",
                  "disabled": false
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "Vehicles",
      "item": [
        {
          "name": "List Vehicles",
          "request": {
            "method": "GET",
            "description": "Returns all vehicles in the carrier's fleet.",
            "header": [
              {
                "key": "X-API-Provider-Key",
                "value": "{{providerKey}}",
                "type": "text"
              },
              {
                "key": "X-API-Company-Key",
                "value": "{{companyKey}}",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://api.lucideld.com/v2/vehicles?limit=100&page=1",
              "protocol": "https",
              "host": [
                "api",
                "lucideld",
                "com"
              ],
              "path": [
                "v2",
                "vehicles"
              ],
              "query": [
                {
                  "key": "status",
                  "value": "",
                  "description": "Filter by 'active' or 'inactive'. Omit for all.",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "100",
                  "description": "Records per page",
                  "disabled": false
                },
                {
                  "key": "page",
                  "value": "1",
                  "description": "Page number",
                  "disabled": false
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Get Vehicle by ID",
          "request": {
            "method": "GET",
            "description": "Returns information for a single vehicle.",
            "header": [
              {
                "key": "X-API-Provider-Key",
                "value": "{{providerKey}}",
                "type": "text"
              },
              {
                "key": "X-API-Company-Key",
                "value": "{{companyKey}}",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://api.lucideld.com/v2/vehicle/e5c9f3b1-2d7a-4e8c-a6f3-9b1d4e7c2f5a",
              "protocol": "https",
              "host": [
                "api",
                "lucideld",
                "com"
              ],
              "path": [
                "v2",
                "vehicle",
                ":vehicle_id"
              ],
              "variable": [
                {
                  "key": "vehicle_id",
                  "value": "e5c9f3b1-2d7a-4e8c-a6f3-9b1d4e7c2f5a",
                  "description": "The vehicle's unique identifier"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Latest Vehicle Status",
          "request": {
            "method": "GET",
            "description": "Returns the most recent location and motion status for one or all vehicles.",
            "header": [
              {
                "key": "X-API-Provider-Key",
                "value": "{{providerKey}}",
                "type": "text"
              },
              {
                "key": "X-API-Company-Key",
                "value": "{{companyKey}}",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://api.lucideld.com/v2/latest-vehicle-status?limit=100&page=1",
              "protocol": "https",
              "host": [
                "api",
                "lucideld",
                "com"
              ],
              "path": [
                "v2",
                "latest-vehicle-status"
              ],
              "query": [
                {
                  "key": "vehicle_id",
                  "value": "",
                  "description": "Filter to one vehicle. Omit for all.",
                  "disabled": true
                },
                {
                  "key": "limit",
                  "value": "100",
                  "description": "Records per page",
                  "disabled": false
                },
                {
                  "key": "page",
                  "value": "1",
                  "description": "Page number",
                  "disabled": false
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "Vehicle Location History",
          "request": {
            "method": "GET",
            "description": "Returns a vehicle's historical GPS breadcrumbs for up to the last 6 months.",
            "header": [
              {
                "key": "X-API-Provider-Key",
                "value": "{{providerKey}}",
                "type": "text"
              },
              {
                "key": "X-API-Company-Key",
                "value": "{{companyKey}}",
                "type": "text"
              },
              {
                "key": "Accept",
                "value": "application/json",
                "type": "text"
              }
            ],
            "url": {
              "raw": "https://api.lucideld.com/v2/vehicle-location-history/e5c9f3b1-2d7a-4e8c-a6f3-9b1d4e7c2f5a?start_date=03-30-2026&end_date=04-01-2026&limit=100",
              "protocol": "https",
              "host": [
                "api",
                "lucideld",
                "com"
              ],
              "path": [
                "v2",
                "vehicle-location-history",
                ":vehicle_id"
              ],
              "query": [
                {
                  "key": "start_date",
                  "value": "03-30-2026",
                  "description": "Format MM-DD-YYYY",
                  "disabled": false
                },
                {
                  "key": "end_date",
                  "value": "04-01-2026",
                  "description": "Format MM-DD-YYYY",
                  "disabled": false
                },
                {
                  "key": "limit",
                  "value": "100",
                  "description": "Records per page",
                  "disabled": false
                },
                {
                  "key": "next_page_token",
                  "value": "",
                  "description": "From the previous response",
                  "disabled": true
                }
              ],
              "variable": [
                {
                  "key": "vehicle_id",
                  "value": "e5c9f3b1-2d7a-4e8c-a6f3-9b1d4e7c2f5a",
                  "description": "The vehicle's unique identifier"
                }
              ]
            }
          },
          "response": []
        }
      ]
    }
  ],
  "variable": [
    {
      "key": "providerKey",
      "value": "",
      "type": "string"
    },
    {
      "key": "companyKey",
      "value": "",
      "type": "string"
    }
  ]
}