> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goyappr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Persona



## OpenAPI

````yaml GET /agent-eval/personas/{id}
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /agent-eval/personas/{id}:
    parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
          format: uuid
    get:
      tags:
        - Agent Eval
      summary: Get persona
      operationId: getPersona
      responses:
        '200':
          description: Persona
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EvalPersona'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    EvalPersona:
      type: object
      description: >
        Reusable caller archetype consumed by eval cases. The `identity_prompt`
        plus `behavior_traits` shape how the persona LLM responds; the same
        persona can be reused across many cases.
      required:
        - id
        - company_id
        - name
        - identity_prompt
        - language
        - created_at
      properties:
        id:
          type: string
          format: uuid
        company_id:
          type: string
          format: uuid
        name:
          type: string
          example: Frustrated tenant
        description:
          type: string
          nullable: true
        identity_prompt:
          type: string
          description: >-
            System prompt fragment defining who the persona is. Written
            second-person ("You are…").
          example: >-
            You are a 38-year-old tenant calling about a leaking pipe in your
            kitchen. You're frustrated because this is the third time you've
            reported it.
        behavior_traits:
          type: object
          additionalProperties: true
          description: >
            Free-form JSON. Common keys: `patience` (low|medium|high),
            `verbosity` (terse|chatty), `cooperation` (cooperative|adversarial),
            `interruption_tendency` (none|occasional|frequent), `accent` /
            `dialect` hints, `goal` (what the persona is trying to achieve in
            the call).
          example:
            patience: low
            verbosity: chatty
            cooperation: cooperative
            interruption_tendency: occasional
            goal: Get a maintenance technician scheduled today
        language:
          type: string
          enum:
            - he
            - en
          default: en
        voice_config:
          type: object
          additionalProperties: true
          description: >-
            Forward-compat for v2 voice-mode (TTS/STT loopback). Ignored in text
            mode.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        deleted_at:
          type: string
          format: date-time
          nullable: true
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````