HeyMilo Schema Discovery API

The Schema Discovery API from HeyMilo — 2 operation(s) for schema discovery.

Operations 2

GET /api/v2/schemas/agents List agent types #
GET /api/v2/schemas/question-types List question types #

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/heymilo-schema-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

heymilo-schema-discovery-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HeyMilo Public ATS Schema Discovery API
  description: External developer-facing API for HeyMilo. Create interviewers with agentic workflows, ingest candidates, retrieve interview results, and manage workspace resources.
  version: 2.0.0
servers:
- url: https://api.heymilo.ai
  description: Production
security:
- ApiKeyAuth: []
tags:
- name: Schema Discovery
paths:
  /api/v2/schemas/agents:
    get:
      tags:
      - Schema Discovery
      summary: List agent types
      description: Returns the registry of supported agent types and their configuration.
      operationId: list_agent_types_api_v2_schemas_agents_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response List Agent Types Api V2 Schemas Agents Get
  /api/v2/schemas/question-types:
    get:
      tags:
      - Schema Discovery
      summary: List question types
      description: Returns the registry of supported question/criteria types by modality.
      operationId: list_question_types_api_v2_schemas_question_types_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response List Question Types Api V2 Schemas Question Types Get
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key for authentication. Pass your key in the X-API-KEY header.