Federal Motor Carrier Safety Administration Carriers API

The Carriers API from Federal Motor Carrier Safety Administration — 7 operation(s) for carriers.

Operations 7

GET /carriers/{dotNumber} Get carrier by DOT number #
GET /carriers/name/{name} Search carriers by name #
GET /carriers/{dotNumber}/cargo-carried Get cargo carried for a carrier #
GET /carriers/{dotNumber}/operation-classification Get operation classification for a carrier #
GET /carriers/{dotNumber}/oos Get out-of-service info for a carrier #
GET /carriers/{dotNumber}/docket-numbers Get docket numbers for a carrier #
GET /carriers/{dotNumber}/authority Get carrier authority #

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/federal-motor-carrier-safety-administration-carriers-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

federal-motor-carrier-safety-administration-carriers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Federal Motor Carrier Safety Administration QCMobile Carriers API
  description: The FMCSA QCMobile API provides access to commercial motor carrier safety data including carriers, vehicles, drivers, inspections, and crashes. Authentication uses a WebKey passed as a query parameter on each request.
  version: '1.0'
  contact:
    name: FMCSA
    url: https://mobile.fmcsa.dot.gov/QCDevsite/docs/apiAccess
servers:
- url: https://mobile.fmcsa.dot.gov/qc/services
  description: Production
security:
- WebKey: []
tags:
- name: Carriers
paths:
  /carriers/{dotNumber}:
    get:
      summary: Get carrier by DOT number
      operationId: getCarrierByDotNumber
      parameters:
      - name: dotNumber
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Carrier record
      tags:
      - Carriers
  /carriers/name/{name}:
    get:
      summary: Search carriers by name
      operationId: searchCarriersByName
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Matching carrier records
      tags:
      - Carriers
  /carriers/{dotNumber}/cargo-carried:
    get:
      summary: Get cargo carried for a carrier
      operationId: getCarrierCargoCarried
      parameters:
      - name: dotNumber
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Cargo carried list
      tags:
      - Carriers
  /carriers/{dotNumber}/operation-classification:
    get:
      summary: Get operation classification for a carrier
      operationId: getCarrierOperationClassification
      parameters:
      - name: dotNumber
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Operation classification list
      tags:
      - Carriers
  /carriers/{dotNumber}/oos:
    get:
      summary: Get out-of-service info for a carrier
      operationId: getCarrierOos
      parameters:
      - name: dotNumber
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Out-of-service record
      tags:
      - Carriers
  /carriers/{dotNumber}/docket-numbers:
    get:
      summary: Get docket numbers for a carrier
      operationId: getCarrierDocketNumbers
      parameters:
      - name: dotNumber
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Docket numbers
      tags:
      - Carriers
  /carriers/{dotNumber}/authority:
    get:
      summary: Get carrier authority
      operationId: getCarrierAuthority
      parameters:
      - name: dotNumber
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Authority record
      tags:
      - Carriers
components:
  securitySchemes:
    WebKey:
      type: apiKey
      in: query
      name: webKey