Pomo AI Personas API

The ai-personas API from Pomo — 5 operation(s) for ai-personas.

Business capability
Customer Segmentation Management BC-420.20

Operations 5

GET /api/ai-personas/personas Get Personas #
GET /api/ai-personas/personas/groups Get Persona Groups #
POST /api/ai-personas/personas/generate Generate Personas #
DELETE /api/ai-personas/personas/{persona_id} Delete Persona #
POST /api/ai-personas/personas/bulk-delete Bulk Delete 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/pomo-ai-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

pomo-ai-personas-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GPT Backend AI Personas API
  version: 0.1.0
servers:
- url: https://api.usepomo.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: ai-personas
paths:
  /api/ai-personas/personas:
    get:
      tags:
      - ai-personas
      summary: Get Personas
      description: Get AI personas for the current company profile with pagination.
      operationId: get_personas_api_ai_personas_personas_get
      security:
      - HTTPBearer: []
      parameters:
      - name: product_offering_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter by specific product offering (None for company-wide)
          title: Product Offering Id
        description: Filter by specific product offering (None for company-wide)
      - name: target_group
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by target audience group
          title: Target Group
        description: Filter by target audience group
      - name: persona_type
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          description: Filter by persona type
          title: Persona Type
        description: Filter by persona type
      - name: persona_set_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter by specific persona set
          title: Persona Set Id
        description: Filter by specific persona set
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          maximum: 1000
          description: Number of personas to return
          default: 50
          title: Limit
        description: Number of personas to return
      - name: offset
        in: query
        required: false
        schema:
          type: integer
          minimum: 0
          description: Number of personas to skip
          default: 0
          title: Offset
        description: Number of personas to skip
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/ai-personas/personas/groups:
    get:
      tags:
      - ai-personas
      summary: Get Persona Groups
      description: Get all target audience groups with persona counts.
      operationId: get_persona_groups_api_ai_personas_personas_groups_get
      security:
      - HTTPBearer: []
      parameters:
      - name: product_offering_id
        in: query
        required: false
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          description: Filter by specific product offering
          title: Product Offering Id
        description: Filter by specific product offering
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/ai-personas/personas/generate:
    post:
      tags:
      - ai-personas
      summary: Generate Personas
      description: Generate AI personas for company or specific product offering.
      operationId: generate_personas_api_ai_personas_personas_generate_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/routes__ai_personas__GeneratePersonasRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /api/ai-personas/personas/{persona_id}:
    delete:
      tags:
      - ai-personas
      summary: Delete Persona
      description: Delete (deactivate) a specific persona.
      operationId: delete_persona_api_ai_personas_personas__persona_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: persona_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Persona Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/ai-personas/personas/bulk-delete:
    post:
      tags:
      - ai-personas
      summary: Bulk Delete Personas
      description: Delete multiple personas at once.
      operationId: bulk_delete_personas_api_ai_personas_personas_bulk_delete_post
      requestBody:
        content:
          application/json:
            schema:
              items:
                type: string
                format: uuid
              type: array
              title: Persona Ids
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    routes__ai_personas__GeneratePersonasRequest:
      properties:
        product_offering_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Product Offering Id
        personas_per_group:
          type: integer
          maximum: 100.0
          title: Personas Per Group
          description: Number of personas per target group
          default: 50
        persona_set_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Persona Set Id
        location:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Location
      type: object
      title: GeneratePersonasRequest
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer