# FMCSA Carrier Authority & Safety Check

> FMCSA Carrier Authority & Safety Check is a paid API for AI agents from agents.nibiashara.biz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Looks up a US motor carrier's live FMCSA federal record including operating authority, safety rating, fleet size, crash history, and inspection summary with plain-language risk flags.

## Facts

- Endpoint: GET https://agents.nibiashara.biz/shelf/carrier-authority-check
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fmcsa-carrier-authority-safety-check-70383cc7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nBNcjRBfXJ-Qu0_fwJB9r

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fmcsa-carrier-authority-safety-check-70383cc7
```

Example prompt: Before I tender this load, can you pull the FMCSA carrier authority and safety record for MC number 123456 and flag any issues?

## When to prefer this

Use this endpoint when a freight broker, dispatcher, or logistics agent needs an authoritative, real-time FMCSA federal record for a US motor carrier prior to load tender or carrier onboarding. Prefer this over manual FMCSA portal lookups or scraping when you need structured, agent-consumable carrier authority and safety data with pre-computed risk flags.

## Known failure modes

- MC or DOT number not found in FMCSA database — returns not-found error
- Neither mc nor dot query parameter provided — returns validation error
- FMCSA data source temporarily unavailable — may return service error
- Invalid or malformed MC/DOT number format — returns error

## How this service works

US carrier authority & safety check (FMCSA). Live federal FMCSA record for a US motor carrier: legal name, operating status (allowed to operate), authority, safety rating, fleet size, crash and inspection summary — with plain risk flags. The check a freight-broker or dispatch agent runs before tendering a load.

## Output

Returns the carrier's legal name, current operating status, authority type, safety rating, fleet size, crash summary, inspection summary, and plain-language risk flags derived from the live FMCSA federal record.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "mc": {
       "type": "string",
       "description": "MC/docket number (this or dot required)"
      },
      "dot": {
       "type": "string",
       "description": "USDOT number (this or mc required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "flags": [],
  "found": true,
  "safety": {
   "rating": "S"
  },
  "carrier": {
   "legal_name": "EXAMPLE TRUCKING LLC",
   "allowed_to_operate": "Y"
  },
  "verdict": "CLEAR",
  "authority": {
   "common": "A"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fmcsa-carrier-authority-safety-check-70383cc7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.nibiashara.biz](https://www.zero.xyz/host/agents.nibiashara.biz/llms.txt)
