> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nexusfeed.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Accessorials

> [COMING SOON] Return the accessorial fee schedule for a carrier.

This endpoint is not yet available. It will return liftgate, residential delivery,
re-delivery, inside delivery, limited access, notification, and appointment fees.
Currently returns 404. Use `/v1/ltl/fuel-surcharge` for live carrier data.



## OpenAPI

````yaml https://api.nexusfeed.dev/openapi.json get /v1/ltl/accessorials
openapi: 3.1.0
info:
  title: B2B Agentic Arbitrage Hub
  description: >-
    Real-time LTL freight carrier fuel surcharge rates and ABC liquor license
    compliance records, served as agent-ready JSON with verifiability metadata.
    Built for AI agents that need authoritative B2B data — not raw HTML
    scraping.


    ## Products

    - **LTL Fuel Surcharge** (`/v1/ltl`): 6 carriers (ODFL, Saia, Estes, ABF,
    R+L, TForce), weekly rates, DOE diesel price, up to 5 years of history

    - **ABC License Compliance** (`/v1/abc`): CA, TX, NY, FL — license status,
    expiration, and suspension records


    ## Authentication

    All endpoints require an `X-API-Key` header. Contact `ops@nexusfeed.dev` to
    obtain an API key.


    ## Verifiability

    Every response includes a `_verifiability` block with `source_timestamp`,
    `extraction_confidence`, `raw_data_evidence_url`, `extraction_method`, and
    `data_freshness_ttl_seconds` — enabling agents to cite provenance and assess
    staleness.
  version: 1.0.0
servers:
  - url: https://api.nexusfeed.dev
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/ltl/accessorials:
    get:
      tags:
        - LTL
      summary: Get Accessorials
      description: >-
        [COMING SOON] Return the accessorial fee schedule for a carrier.


        This endpoint is not yet available. It will return liftgate, residential
        delivery,

        re-delivery, inside delivery, limited access, notification, and
        appointment fees.

        Currently returns 404. Use `/v1/ltl/fuel-surcharge` for live carrier
        data.
      operationId: get_accessorials_v1_ltl_accessorials_get
      parameters:
        - name: carrier
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/CarrierCode'
            description: Carrier SCAC code (e.g. ODFL, SAIA).
          description: Carrier SCAC code (e.g. ODFL, SAIA).
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                title: Response Get Accessorials V1 Ltl Accessorials Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    CarrierCode:
      type: string
      enum:
        - ODFL
        - SAIA
        - ESTES
        - ABF
        - RLC
        - TFORCE
        - XPO
        - SEFL
        - AVERITT
        - FEDEX
      title: CarrierCode
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````