FastDOL Usage API

The Usage API from FastDOL — 3 operation(s) for usage.

Operations 3

POST /v1/usage/lookup FastDOL Log Lookup #
POST /v1/usage/pdf-report-claim FastDOL Claim PDF Report #
GET /v1/usage FastDOL GET Usage #

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/fastdol-usage-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

fastdol-usage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FastDOL Auth Usage API
  version: '1.0'
  description: FastDOL aggregates federal workplace enforcement records on 2.3M US employers across 16 federal agencies — OSHA, WHD, MSHA, EPA ECHO, NLRB, FMCSA, OFLC, BLS SOII, SAM.gov, CMS, USAspending, CPSC, NHTSA, SEC, and the UVA Corporate Prosecution Registry. Query inspections, violations, penalties, wage theft cases, severe injury reports, recalls, and federal contract awards via a single, normalized JSON API.
  contact:
    name: FastDOL Support
    email: ben@fastdol.com
    url: https://fastdol.com/enterprise
  termsOfService: https://fastdol.com/terms
servers:
- url: https://api.fastdol.com
  description: FastDOL production API
tags:
- name: Usage
paths:
  /v1/usage/lookup:
    post:
      summary: FastDOL Log Lookup
      description: 'Increment lookups_used. Soft cap — return 200 with `over_quota`

        flag rather than 429, so the page render that triggered this isn''t

        interrupted. The UI uses the flag to render an upgrade banner.'
      operationId: log_lookup_v1_usage_lookup_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
              examples:
                LogLookupV1UsageLookupPost200Example:
                  summary: Default LogLookupV1UsageLookupPost 200 response
                  x-microcks-default: true
                  value: string
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      tags:
      - Usage
  /v1/usage/pdf-report-claim:
    post:
      summary: FastDOL Claim PDF Report
      description: 'Hard-cap claim for one PDF report. Returns 429 if the customer is

        at quota. Caller (the report page) refuses to render on 429 and

        shows an upgrade prompt instead.


        Atomic check-and-increment via SELECT ... FOR UPDATE inside a

        transaction. If the limit is 0 (Free tier), the customer never gets

        past the comparison — no slot is consumed and the upgrade response

        is consistent.'
      operationId: claim_pdf_report_v1_usage_pdf_report_claim_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
              examples:
                ClaimPdfReportV1UsagePdfReportClaimPost200Example:
                  summary: Default ClaimPdfReportV1UsagePdfReportClaimPost 200 response
                  x-microcks-default: true
                  value: string
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      tags:
      - Usage
  /v1/usage:
    get:
      summary: FastDOL GET Usage
      description: 'Return all three usage counters + their limits for the dashboard.


        Read-only convenience endpoint so the account page doesn''t have to

        join across customers + api_keys + the live api_usage row count.'
      operationId: get_usage_v1_usage_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
              examples:
                GetUsageV1UsageGet200Example:
                  summary: Default GetUsageV1UsageGet 200 response
                  x-microcks-default: true
                  value: string
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      tags:
      - Usage