AI Crawler Index Status API

Freshness of the upstream sources.

Operations 2

GET /status.json Freshness and health of every upstream IP-range endpoint #
GET /feed.json JSON Feed 1.1 of what changed #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
x-openapi-yaml
https://www.pathwren.workers.dev/openapi.yaml
🔗
Swagger
https://www.pathwren.workers.dev/swagger.json
🔗
Feed
https://www.pathwren.workers.dev/feed.xml
🔗
Feed
https://www.pathwren.workers.dev/feed.json
🔗
x-mcp-server
https://www.pathwren.workers.dev/mcp
🔗
x-mcp-manifest
https://www.pathwren.workers.dev/.well-known/mcp.json
🔗
x-onboarding
https://www.pathwren.workers.dev/.well-known/api-onboarding
🔗
x-plugin-manifest
https://www.pathwren.workers.dev/.well-known/ai-plugin.json
🔗
x-api-catalog
https://www.pathwren.workers.dev/.well-known/api-catalog
🔗
x-llms-txt
https://www.pathwren.workers.dev/llms.txt
🔗
x-bulk-data
https://www.pathwren.workers.dev/data/agents.json
🔗
x-ip-ranges
https://www.pathwren.workers.dev/ip-ranges/all.json
🔗
x-security-txt
https://www.pathwren.workers.dev/.well-known/security.txt
🔗
x-sitemap
https://www.pathwren.workers.dev/sitemap.xml
🔗
StatusPage
https://www.pathwren.workers.dev/status.html
🔗
License
https://creativecommons.org/publicdomain/zero/1.0/
🔗
Conventions
https://raw.githubusercontent.com/api-evangelist/pathwren/refs/heads/main/conventions/pathwren-conventions.yml
🔗
ErrorCatalog
https://raw.githubusercontent.com/api-evangelist/pathwren/refs/heads/main/errors/pathwren-problem-types.yml
🔗
DataModel
https://raw.githubusercontent.com/api-evangelist/pathwren/refs/heads/main/data-model/pathwren-data-model.yml
🔗
ToolCrosswalk
https://raw.githubusercontent.com/api-evangelist/pathwren/refs/heads/main/mcp/pathwren-tool-crosswalk.yml
🔗
ChangeLog
https://www.pathwren.workers.dev/changelog.html

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/pathwren-status-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

pathwren-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AI Crawler Index Status API
  version: '2026-09-01'
  summary: Every AI crawler on the web, what it is for, what blocking it costs you, and the IP ranges its operator publishes — as JSON, CSV, robots.txt and regex.
  description: 'A read-only, static, keyless index of 56 web crawlers operated by 30 companies and projects: what each one is for, the exact robots.txt token and user-agent substring, whether the operator says it obeys robots.txt, how to verify it is genuine, and — the part nobody else publishes — what you lose by blocking it.'
  license:
    name: CC0-1.0
    url: https://creativecommons.org/publicdomain/zero/1.0/
  contact:
    url: https://www.pathwren.workers.dev/about.html
servers:
- url: https://www.pathwren.workers.dev
tags:
- name: Status
  description: Freshness of the upstream sources.
paths:
  /status.json:
    get:
      summary: Freshness and health of every upstream IP-range endpoint
      operationId: getStatus
      tags:
      - Status
      responses:
        '200':
          description: Per-source fetch state
          content:
            application/json:
              schema:
                type: object
                properties:
                  sources_ok:
                    type: integer
                  sources_failed:
                    type: integer
                  generated_at:
                    type: string
                    format: date-time
  /feed.json:
    get:
      summary: JSON Feed 1.1 of what changed
      operationId: getFeed
      tags:
      - Status
      responses:
        '200':
          description: JSON Feed
          content:
            application/feed+json: {}