ArthurAI Agent Discovery API

The Agent Discovery API from ArthurAI — 2 operation(s) for agent discovery.

Operations 2

POST /api/v1/tasks/{task_id}/agent-polling/execute Execute Agent Polling #
POST /api/v1/agent-polling/execute-all Execute All Agent Polling #

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/arthurai-agent-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

arthurai-agent-discovery-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arthur GenAI Engine Agent Discovery API
  version: 2.1.688
servers:
- url: https://platform.arthur.ai/api
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Agent Discovery
paths:
  /api/v1/tasks/{task_id}/agent-polling/execute:
    post:
      tags:
      - Agent Discovery
      summary: Execute Agent Polling
      description: Manually trigger a polling job for a task. Does not require any particular state — admins can use this to force an immediate poll outside the normal loop cadence.
      operationId: execute_agent_polling_api_v1_tasks__task_id__agent_polling_execute_post
      security:
      - API Key: []
      parameters:
      - name: task_id
        in: path
        required: true
        schema:
          type: string
          title: Task Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecutePollingResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/agent-polling/execute-all:
    post:
      tags:
      - Agent Discovery
      summary: Execute All Agent Polling
      description: Manually trigger a full agent discovery and polling cycle. Discovers new GCP agents and enqueues trace-fetch jobs for all eligible tasks. Use wait_for_completion=true to block until all polling jobs finish.
      operationId: execute_all_agent_polling_api_v1_agent_polling_execute_all_post
      security:
      - API Key: []
      parameters:
      - name: wait_for_completion
        in: query
        required: false
        schema:
          type: boolean
          default: false
          title: Wait For Completion
      - name: timeout
        in: query
        required: false
        schema:
          anyOf:
          - type: integer
            minimum: 1
          - type: 'null'
          title: Timeout
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DiscoverAndPollResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DiscoverAndPollResponse:
      properties:
        status:
          type: string
          title: Status
          description: Status of the operation
        discovered:
          type: integer
          title: Discovered
          description: Number of new agent tasks created
        traces_fetched:
          type: integer
          title: Traces Fetched
          description: Total number of traces fetched across all tasks (0 in async mode)
      type: object
      required:
      - status
      - discovered
      - traces_fetched
      title: DiscoverAndPollResponse
      description: Response model for the execute-all agent polling endpoint.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    ExecutePollingResponse:
      properties:
        status:
          type: string
          title: Status
          description: Status of the operation
        task_id:
          type: string
          title: Task Id
          description: Task ID that was enqueued
      type: object
      required:
      - status
      - task_id
      title: ExecutePollingResponse
      description: Response model for the single-task agent polling endpoint.
  securitySchemes:
    API_Key:
      type: http
      description: Bearer token authentication with an API key
      scheme: bearer