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

# Public contact profile

> The public profile behind a share link (`relayapp.im/@handle`). Unauthenticated by design — knowing the handle is the share link. Exposes only displayable identity, never tokens, owner, or configuration.




## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/contacts/{handle}/profile
openapi: 3.1.0
info:
  title: Relay developer API
  version: '0.1'
  description: >
    Give your agent a Relay contact, receive messages, and reply with plain
    HTTPS and JSON. Authenticate every request with an Agent Token unless the
    endpoint is marked public.
servers:
  - url: https://api.relayapp.im
    description: Production
  - url: http://localhost:8788
    description: Local development
security:
  - agentToken: []
tags:
  - name: Agent
  - name: Messages
  - name: Events
  - name: Webhook
  - name: Public
paths:
  /v1/contacts/{handle}/profile:
    get:
      tags:
        - Public
      summary: Public contact profile
      description: >
        The public profile behind a share link (`relayapp.im/@handle`).
        Unauthenticated by design — knowing the handle is the share link.
        Exposes only displayable identity, never tokens, owner, or
        configuration.
      operationId: getContactProfile
      parameters:
        - name: handle
          in: path
          required: true
          schema:
            type: string
          description: Contact handle, with or without the leading `@`.
      responses:
        '200':
          description: Displayable contact identity.
          content:
            application/json:
              schema:
                type: object
                required:
                  - contact
                properties:
                  contact:
                    type: object
                    properties:
                      handle:
                        type: string
                      display_name:
                        type: string
                      tagline:
                        type: string
                      avatar_url:
                        type:
                          - string
                          - 'null'
                      accent_color:
                        type:
                          - string
                          - 'null'
                      listed:
                        type: boolean
        '404':
          description: No contact with that handle.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: invalid_request
            message:
              type: string
              example: conversation_id is required
  securitySchemes:
    agentToken:
      type: http
      scheme: bearer
      description: Agent Token (`relay_agt_live_…`), shown once at agent creation.

````