Old Dominion Freight Line Documents API

Retrieve PDF shipping documents associated with ODFL PRO numbers.

Operations 1

GET /documents/{proNumber} Retrieve documents for a PRO number #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/old-dominion-freight-line-documents-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

old-dominion-freight-line-documents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ODFL Bill of Lading Documents API
  summary: Electronic bill of lading creation for Old Dominion Freight Line shipments.
  description: The Old Dominion Freight Line Bill of Lading API submits electronic bills of lading to the ODFL billing system. The service generates shipping labels and BOL documents that can be printed and applied to freight, enabling shippers to programmatically create freight documentation as part of their shipping workflow.
  version: '3.1'
  contact:
    name: ODFL API Support
    email: api@odfl.com
    url: https://www.odfl.com/us/en/resources/shipping-api-integrations.html
servers:
- url: https://www.odfl.com/wsBOL/v3
  description: Old Dominion Freight Line Bill of Lading API
security:
- BasicAuth: []
tags:
- name: Documents
  description: Retrieve PDF shipping documents associated with ODFL PRO numbers.
paths:
  /documents/{proNumber}:
    get:
      tags:
      - Documents
      summary: Retrieve documents for a PRO number
      description: Returns the available PDF documents (bill of lading, delivery receipt) associated with the supplied ODFL PRO number.
      operationId: getDocumentsByPro
      parameters:
      - name: proNumber
        in: path
        required: true
        schema:
          type: string
        description: ODFL PRO number identifying the shipment.
      - name: documentType
        in: query
        required: false
        schema:
          type: string
          enum:
          - BOL
          - DELIVERY_RECEIPT
          - INVOICE
        description: Optional filter to retrieve a specific document type.
      responses:
        '200':
          description: PDF document(s) successfully returned.
          content:
            application/pdf:
              schema:
                type: string
                format: binary
            application/json:
              schema:
                $ref: '#/components/schemas/DocumentResponse'
        '404':
          description: PRO number or document not found.
        '401':
          description: Authentication failed.
components:
  schemas:
    DocumentResponse:
      type: object
      properties:
        proNumber:
          type: string
        documents:
          type: array
          items:
            $ref: '#/components/schemas/Document'
    Document:
      type: object
      properties:
        type:
          type: string
        url:
          type: string
          format: uri
        contentBase64:
          type: string
          format: byte
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
externalDocs:
  description: ODFL Bill of Lading API Development Guide
  url: https://www.odfl.com/content/dam/odfl/us/en/documents/web-services/Bill%20of%20Lading%20API%20Development%20Guide.pdf