Ada

Ada Persona API

The persona API from Ada — 1 operation(s) for persona.

Operations 2

GET /v2/persona/ Get persona #
PATCH /v2/persona/ Update persona #

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/ada-persona-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

ada-persona-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Knowledge Persona API
  version: 1.0.0
servers:
- url: https://example.ada.support/api
  description: Production
tags:
- name: persona
paths:
  /v2/persona/:
    get:
      operationId: get-persona
      summary: Get persona
      description: Retrieve the current persona configuration.
      tags:
      - persona
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Persona'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '403':
          description: Authorization Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
    patch:
      operationId: update-persona
      summary: Update persona
      description: Partially update the persona configuration. Only the fields provided in the request body are updated; omitted fields retain their existing values. Fields that are not part of the public persona schema are rejected.
      tags:
      - persona
      parameters:
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Persona'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '403':
          description: Authorization Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PersonaUpdate'
components:
  schemas:
    PersonaMessageLength:
      type: string
      enum:
      - concise
      - normal
      title: PersonaMessageLength
    PersonaUpdate:
      type: object
      properties:
        personality:
          type: array
          items:
            type: string
        emoji_usage:
          type: boolean
        allowed_emojis:
          type: string
        default_timezone:
          type: string
        company_description:
          type:
          - string
          - 'null'
        community_guidelines_url:
          type:
          - string
          - 'null'
        message_length:
          $ref: '#/components/schemas/PersonaUpdateMessageLength'
        ask_for_more_help:
          type: boolean
        no_customer_pi:
          type: boolean
        no_competitors:
          type: boolean
        competitor_names:
          type:
          - string
          - 'null'
        enable_acknowledgment_messages:
          type: boolean
      description: Partial persona update. All fields optional.
      title: PersonaUpdate
    Persona:
      type: object
      properties:
        personality:
          type: array
          items:
            type: string
        emoji_usage:
          type: boolean
        allowed_emojis:
          type: string
        default_timezone:
          type: string
        company_description:
          type:
          - string
          - 'null'
        community_guidelines_url:
          type:
          - string
          - 'null'
        message_length:
          $ref: '#/components/schemas/PersonaMessageLength'
        ask_for_more_help:
          type: boolean
        no_customer_pi:
          type: boolean
        no_competitors:
          type: boolean
        competitor_names:
          type:
          - string
          - 'null'
        enable_acknowledgment_messages:
          type: boolean
      required:
      - personality
      - emoji_usage
      - allowed_emojis
      - default_timezone
      - message_length
      - ask_for_more_help
      - no_customer_pi
      - no_competitors
      - enable_acknowledgment_messages
      description: Persona configuration
      title: Persona
    PersonaUpdateMessageLength:
      type: string
      enum:
      - concise
      - normal
      title: PersonaUpdateMessageLength
    Errors:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ErrorsErrorsItems'
          description: A list of errors
      required:
      - errors
      title: Errors
    ErrorsErrorsItems:
      type: object
      properties:
        type:
          type: string
          description: The error type
        message:
          type: string
          description: The error message
        details:
          type:
          - string
          - 'null'
          description: Extra information about the error
      required:
      - type
      - message
      title: ErrorsErrorsItems
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer