FastDOL Health API

The Health API from FastDOL — 2 operation(s) for health.

Operations 3

GET /v1/health FastDOL Health #
HEAD /v1/health FastDOL Health #
GET /v1/health/detail FastDOL Health Detail #

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-health-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-health-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: FastDOL Auth Health 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: Health
paths:
  /v1/health:
    get:
      summary: FastDOL Health
      description: 'Public health endpoint — returns ok/unhealthy only.


        Used by UptimeRobot and status-page builders. Intentionally minimal

        to avoid leaking internal operational detail. Only DB + data-loaded

        checks trigger 503 — pipeline freshness is not customer-facing and

        is exposed on /v1/health/detail for admin monitoring.'
      operationId: health_v1_health_head
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
              examples:
                HealthV1HealthHead200Example:
                  summary: Default HealthV1HealthHead 200 response
                  x-microcks-default: true
                  value: string
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      tags:
      - Health
    head:
      summary: FastDOL Health
      description: 'Public health endpoint — returns ok/unhealthy only.


        Used by UptimeRobot and status-page builders. Intentionally minimal

        to avoid leaking internal operational detail. Only DB + data-loaded

        checks trigger 503 — pipeline freshness is not customer-facing and

        is exposed on /v1/health/detail for admin monitoring.'
      operationId: health_v1_health_head
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
              examples:
                HealthV1HealthHead200Example:
                  summary: Default HealthV1HealthHead 200 response
                  x-microcks-default: true
                  value: string
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      tags:
      - Health
  /v1/health/detail:
    get:
      summary: FastDOL Health Detail
      description: 'Admin-only detailed health — requires admin JWT.


        Full diagnostics: DB, pipeline recency, pipeline status, profile

        count, data age, failing checks. Behind auth so customers can''t see

        internal operational state or fingerprint pipeline schedules.'
      operationId: health_detail_v1_health_detail_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
              examples:
                HealthDetailV1HealthDetailGet200Example:
                  summary: Default HealthDetailV1HealthDetailGet 200 response
                  x-microcks-default: true
                  value: string
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      tags:
      - Health