HAMi Website Discovery API

The machine-readable discovery surface of the HAMi documentation website, described by a first-party OpenAPI 3.1.0 document that the site advertises as the service-desc of its RFC 9727 API catalog. Four anonymous GET endpoints — /robots.txt, /.well-known/api-catalog, /.well-known/agent-skills/index.json and /.well-known/site-status.json — let an agent find the project's content-usage signals, its API catalog, its published Agent Skills, and site status without scraping HTML.

Operations 4

GET /robots.txt Robots exclusion rules and content usage preferences
GET /.well-known/api-catalog API catalog linkset
GET /.well-known/agent-skills/index.json Agent skills discovery index
GET /.well-known/site-status.json Website status

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/hami-website-discovery-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

hami-website-discovery-openapi.json Raw ↑
{
  "openapi": "3.1.0",
  "info": {
    "title": "HAMi Website Discovery",
    "version": "1.0.0",
    "description": "Machine-readable discovery endpoints for the HAMi documentation website."
  },
  "servers": [
    {
      "url": "https://project-hami.io"
    }
  ],
  "paths": {
    "/robots.txt": {
      "get": {
        "summary": "Robots exclusion rules and content usage preferences",
        "responses": {
          "200": {
            "description": "robots.txt",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/api-catalog": {
      "get": {
        "summary": "API catalog linkset",
        "responses": {
          "200": {
            "description": "RFC 9727 API catalog",
            "content": {
              "application/linkset+json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/agent-skills/index.json": {
      "get": {
        "summary": "Agent skills discovery index",
        "responses": {
          "200": {
            "description": "Agent skills discovery document",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/.well-known/site-status.json": {
      "get": {
        "summary": "Website status",
        "responses": {
          "200": {
            "description": "Static status metadata",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}