supernormal Agents API

Operations about agents

Operations 5

GET /agents Get agents
POST /agents Create an agent
GET /agents/{id} Get an agent
POST /agents/{id}/publish Publish an agent
POST /agents/{id}/unpublish Unpublish an agent

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/supernormal-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

supernormal-agents-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Supernormal Agent Sessions Agents API
  description: Documentation for the Supernormal API
  license:
    name: MIT
  version: 1.0.0
servers:
- url: https://api.supernormal.com/api/v1
security:
- ApiKeyAuth: []
tags:
- name: Agents
  description: Operations about agents
paths:
  /agents:
    get:
      tags:
      - Agents
      summary: Get agents
      description: Returns the current user's agents
      security:
      - ApiKeyAuth:
        - agents:read
      responses:
        '200':
          description: Agents response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent'
    post:
      tags:
      - Agents
      summary: Create an agent
      description: Creates an agent
      security:
      - ApiKeyAuth:
        - agents:write
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AgentRequest'
      responses:
        '200':
          description: Agent response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent'
  /agents/{id}:
    get:
      tags:
      - Agents
      summary: Get an agent
      description: Returns a single agent
      security:
      - ApiKeyAuth:
        - agents:read
      parameters:
      - name: id
        in: path
        description: The ID of the agent to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Agent response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Agent'
  /agents/{id}/publish:
    post:
      tags:
      - Agents
      summary: Publish an agent
      security:
      - ApiKeyAuth:
        - agents:write
      parameters:
      - name: id
        in: path
        description: The ID of the agent to publish
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Agent published
  /agents/{id}/unpublish:
    post:
      tags:
      - Agents
      summary: Unpublish an agent
      security:
      - ApiKeyAuth:
        - agents:write
      parameters:
      - name: id
        in: path
        description: The ID of the agent to unpublish
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Agent unpublished
components:
  schemas:
    Agent:
      type: object
      properties:
        id:
          description: The agent’s ID
          type: string
        name:
          description: The agent’s name
          type: string
        avatar_url:
          description: The agent’s avatar URL
          type: string
        description:
          description: The agent’s description
          type: string
    AgentRequest:
      type: object
      allOf:
      - $ref: '#/components/schemas/Agent'
      - type: object
        properties:
          actor_prompt:
            type: string
            description: The agent's actor prompt
            enum:
            - inbound_sales
            - survey
            - employee_satisfaction_survey
            - customer_satisfaction_survey
            - event_feedback_survey
            - screening_interview
          actor_voice:
            type: string
            description: The agent's actor voice
            enum:
            - archer
            - christopher
            - rachel
            - scarlet
          brand_color:
            type: string
            description: The agent's brand color
          custom_prompt:
            type: string
            description: The agent's custom prompt
          context:
            type: string
            description: The agent's context
          greeting_prompt:
            type: string
            description: The agent's greeting prompt
          goodbye_prompt:
            type: string
            description: The agent's goodbye prompt
          is_host:
            type: boolean
            description: Whether the agent should speak first
          mode:
            type: string
            description: The agent's speaking mode
            enum:
            - single_response
            - conversation
          max_call_duration:
            type: integer
            description: The agent's maximum call duration
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-TOKEN
      x-scopes:
        user:read: Read user information
        calendar_events:read: Read calendar events
        calendar_events:write: Write calendar events