Replyr.ai AI Agents API

The AI Agents API from Replyr.ai — 5 operation(s) for ai agents.

Operations 6

GET /agents/ #
GET /agents/{agent_id} #
POST /agents/{agent_id} #
GET /agents/functions #
GET /agents/mcp #
GET /agents/files #

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/replyrai-ai-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

replyrai-ai-agents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '1.1'
  title: Docs AI Agents API
servers:
- url: https://app.replyr.ai/api/
security:
- APIKeyHeader: []
tags:
- name: AI Agents
paths:
  /agents/:
    get:
      tags:
      - AI Agents
      description: Get list of AI agents
      operationId: getAIAgents
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Agent'
                    maximum: '100'
                type: object
        '400':
          description: Invalid parameters
  /agents/{agent_id}:
    get:
      tags:
      - AI Agents
      description: Get AI agent by id
      operationId: getAIById
      parameters:
      - name: agent_id
        in: path
        required: true
        schema:
          type: number
          format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent'
    post:
      tags:
      - AI Agents
      description: Update AI agent by id
      operationId: updateAIById
      parameters:
      - name: agent_id
        in: path
        required: true
        schema:
          type: number
          format: int64
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent'
        '400':
          description: ''
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                prompt:
                  type: string
                  required: false
                  description: The prompt field for the AI agent
                max_output_tokens:
                  type: number
                  required: false
                  description: The max_output_tokens field for the AI agent
                model:
                  type: object
                  required: false
                  properties:
                    openAI:
                      type: string
                      required: true
                    gemini:
                      type: string
                      required: true
                    claude:
                      type: string
                      required: true
                    xAI:
                      type: string
                      required: true
                    deepseek:
                      type: string
                      required: true
              example:
                prompt: Your prompt here
        required: true
  /agents/functions:
    get:
      tags:
      - AI Agents
      description: Get list of AI Functions
      operationId: getAIFunctions
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                        name:
                          type: string
                        created_by:
                          type: number
                        created_at:
                          type: string
                          format: date-time
                type: object
  /agents/mcp:
    get:
      tags:
      - AI Agents
      description: Get list of AI MCPs
      operationId: getAIMCPs
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                        name:
                          type: string
                        created_by:
                          type: number
                        created_at:
                          type: string
                          format: date-time
                type: object
  /agents/files:
    get:
      tags:
      - AI Agents
      description: Get list of AI Files
      operationId: getAIFiles
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                        name:
                          type: string
                        size:
                          type: number
                        url:
                          type: string
                        created_by:
                          type: number
                        created_at:
                          type: string
                          format: date-time
                type: object
components:
  schemas:
    Agent:
      type: object
      properties:
        id:
          type: number
          format: int64
        name:
          type: string
        created_by:
          type: number
          format: int64
        created_at:
          type: string
          format: date-time
          description: Date in UTC. Example 2022-10-12 14:40:00
      xml:
        name: Agent
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-ACCESS-TOKEN