Zocomputer Personas API

The Personas API from Zocomputer — 1 operation(s) for personas.

Operations 1

GET /personas/available List available personas #

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/zocomputer-personas-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

zocomputer-personas-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Zo AI Personas API
  version: 1.0.0
servers:
- url: https://api.zo.computer
  description: Zo API
security:
- bearerAuth: []
tags:
- name: Personas
paths:
  /personas/available:
    get:
      tags:
      - Personas
      summary: List available personas
      description: List all configured personas. When authenticated with an API key, returns personas for the key owner.
      operationId: getAvailablePersonas
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ZoPersonasResponse'
components:
  schemas:
    ZoPersonasResponse:
      properties:
        personas:
          items:
            $ref: '#/components/schemas/ZoPersonaInfo'
          type: array
          title: Personas
          description: List of configured personas
      type: object
      required:
      - personas
      title: ZoPersonasResponse
    ZoPersonaInfo:
      properties:
        id:
          type: string
          title: Id
          description: Unique persona identifier
        name:
          type: string
          title: Name
          description: Display name
        prompt:
          type: string
          title: Prompt
          description: System prompt defining the persona's behavior
        model:
          anyOf:
          - type: string
          - type: 'null'
          title: Model
          description: AI model ID, or null for system default
        image:
          anyOf:
          - type: string
          - type: 'null'
          title: Image
          description: Avatar image URL
      type: object
      required:
      - id
      - name
      - prompt
      title: ZoPersonaInfo
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Zo API key (zo_sk_...)