Agentic Resource Discovery (ARD) Agents API

The Agents API from Agentic Resource Discovery (ARD) — 1 operation(s) for agents.

Operations 1

GET /agents Browse Catalog Entries #

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/agentic-resource-discovery-agents-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

agentic-resource-discovery-agents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Agentic Resource Discovery Registry Agents API
  version: 0.5.0
  description: 'Universal federated discovery API specification for AI agents, tools, and capabilities.

    Allows LLM orchestrators to semantically search and discover registries for relevant capabilities

    and enables registry-to-registry federated query routing.

    '
tags:
- name: Agents
paths:
  /agents:
    get:
      summary: Browse Catalog Entries
      description: 'Deterministic, highly cacheable listing endpoint designed for developer portals.

        Relies on strict EBNF database filtering instead of natural language search.

        '
      operationId: listAgents
      parameters:
      - name: filter
        in: query
        required: false
        description: EBNF-like filter expression (e.g., "type = 'application/mcp-server-card+json' AND createdAfter > '2026-01-01'")
        schema:
          type: string
      - name: orderBy
        in: query
        required: false
        description: Field and sorting direction (e.g., "displayName", "updatedAt DESC")
        schema:
          type: string
      - name: pageSize
        in: query
        required: false
        description: Maximum number of entries to return.
        schema:
          type: integer
          default: 20
          maximum: 100
      - name: pageToken
        in: query
        required: false
        description: Token for pagination.
        schema:
          type: string
      responses:
        '200':
          description: Successful deterministic list operation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListResponse'
        '400':
          $ref: '#/components/responses/400BadRequest'
        '401':
          $ref: '#/components/responses/401Unauthorized'
        '429':
          $ref: '#/components/responses/429TooManyRequests'
        '500':
          $ref: '#/components/responses/500InternalError'
      tags:
      - Agents
components:
  responses:
    500InternalError:
      description: Internal server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    401Unauthorized:
      description: Credentials missing or rejected.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    429TooManyRequests:
      description: Rate limit exceeded.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    400BadRequest:
      description: Malformed request payload or invalid syntax.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    ListResponse:
      type: object
      required:
      - items
      properties:
        items:
          type: array
          items:
            $ref: ./ai-catalog.schema.json#/$defs/catalogEntry
        total:
          type: integer
          description: Total count of matching entries in the registry.
        pageToken:
          type: string
          description: Token for paginating subsequent results.
    Error:
      type: object
      required:
      - errorCode
      - message
      properties:
        errorCode:
          type: string
          description: Standard uppercase error classification code.
          example: INVALID_ARGUMENT
        message:
          type: string
          description: Human-readable description explaining the error.
          example: The filter expression syntax 'type = MCP' is invalid. Did you mean 'type = application/mcp-server-card+json'?