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

# Get Caller Profile

> Get a single caller profile for a specific (agent, phone) pair.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /caller-profiles/agents/{agent_id}/{phone}
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /caller-profiles/agents/{agent_id}/{phone}:
    get:
      tags:
        - caller-profiles
      summary: Get Caller Profile
      description: Get a single caller profile for a specific (agent, phone) pair.
      operationId: get_caller_profile_caller_profiles_agents__agent_id___phone__get
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Agent Id
        - name: phone
          in: path
          required: true
          schema:
            type: string
            title: Phone
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallerProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CallerProfileResponse:
      properties:
        id:
          type: string
          title: Id
        tenant_id:
          type: string
          title: Tenant Id
        agent_id:
          type: string
          title: Agent Id
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Agent Name
        phone_number:
          type: string
          title: Phone Number
        total_calls:
          type: integer
          title: Total Calls
        first_seen_at:
          anyOf:
            - type: string
            - type: 'null'
          title: First Seen At
        last_seen_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Seen At
        last_call_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Call Id
        last_call_summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Call Summary
        last_call_outcome:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Call Outcome
        caller_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Caller Name
        preferred_language:
          anyOf:
            - type: string
            - type: 'null'
          title: Preferred Language
        country_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Country Code
        notes:
          additionalProperties: true
          type: object
          title: Notes
      type: object
      required:
        - id
        - tenant_id
        - agent_id
        - phone_number
        - total_calls
      title: CallerProfileResponse
    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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````