> ## 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.

# List Store agents

> Returns active public agents whose Store listing is approved and published. Public visibility alone does not put an agent in this catalog. This read never installs an agent or creates a conversation. Consumer projections never expose an owner, prompt, provider, model, runtime, credential, or backend configuration.




## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/agents
openapi: 3.1.0
info:
  title: Relay developer API
  version: '0.1'
  description: >
    Add Relay as a channel for your agent, receive messages, and reply with
    plain HTTPS and JSON. Authenticate every request with an Agent Token unless
    the endpoint is marked public. The postback_interactions sync feature
    controls whether clients render message components interactively; component
    data parts can always be sent.
  x-relay-feature-availability:
    postback_interactions: off-by-default-preview
  license:
    name: Proprietary
    identifier: LicenseRef-Proprietary
servers:
  - url: https://api.relayapp.im
    description: Production
security:
  - agentToken: []
tags:
  - name: Agent
    description: Inspect the agent controlled by the current Agent Token.
  - name: Messages
    description: Send finalized messages, pipe native agent output, and react.
  - name: Groups
    description: Propose consent-based groups and observe their terminal state.
  - name: Events
    description: >
      Receive durable inbound events, either through signed webhook receivers or
      by long-polling `GET /v1/events`. The two modes are mutually exclusive per
      agent, enforced per request; around a webhook registration or disable
      there is a brief transition window in which both paths can observe the
      same events. Delivery is at least once everywhere — always deduplicate by
      `event_id`.
  - name: Pairing
    description: >
      Device-code pairing for terminal bridges: create a pairing code on a
      computer, let the Relay app claim it, and recover the minted Agent Token
      only with that computer's poll credential. The token never travels to the
      phone.
  - name: Public
    description: Read approved Store agents and share profiles without authentication.
paths:
  /v1/agents:
    get:
      tags:
        - Public
      summary: List Store agents
      description: >
        Returns active public agents whose Store listing is approved and
        published. Public visibility alone does not put an agent in this
        catalog. This read never installs an agent or creates a conversation.
        Consumer projections never expose an owner, prompt, provider, model,
        runtime, credential, or backend configuration.
      operationId: listStoreAgents
      responses:
        '200':
          description: Effective Store catalog.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - agents
                properties:
                  agents:
                    type: array
                    items:
                      $ref: '#/components/schemas/Agent'
        default:
          description: Unexpected server or gateway error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    Agent:
      type: object
      description: >
        Consumer-safe agent identity. Installation is present only on an
        installed-agent projection. Owner identity, prompts, provider/model,
        runtime, credentials, and backend configuration are never included.
      additionalProperties: false
      required:
        - id
        - handle
        - displayName
        - tagline
        - capabilities
        - visibility
        - status
        - createdAt
      properties:
        id:
          type: string
          pattern: ^agt_
          example: agt_01JZRELAY
        handle:
          type: string
          pattern: ^[a-z][a-z0-9_]{2,31}$
          example: relay
        displayName:
          type: string
          example: Relay
        tagline:
          type: string
          example: Your built-in Relay agent
        avatarUrl:
          type: string
          format: uri
          maxLength: 2048
          pattern: ^https://(?![^/?#]*@)
        accentColor:
          type: string
          example: '#0B75FF'
        capabilities:
          type: array
          uniqueItems: true
          items:
            type: string
            enum:
              - text
              - image
              - voice
              - video
              - files
        visibility:
          type: string
          enum:
            - private
            - unlisted
            - public
        installation:
          $ref: '#/components/schemas/AgentInstallation'
        status:
          type: string
          enum:
            - active
            - suspended
            - retired
        createdAt:
          type: string
          format: date-time
    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
    AgentInstallation:
      type: object
      description: >
        User-agent messaging relationship, not a runtime connection. A false
        canRemove hides and rejects ordinary removal; Block and Report remain
        available as safety overrides.
      additionalProperties: false
      required:
        - id
        - state
        - source
        - conversationId
        - canRemove
      properties:
        id:
          type: string
          pattern: ^ins_
        state:
          type: string
          enum:
            - installed
            - removed
        source:
          type: string
          enum:
            - system
            - owner_create
            - store
            - share_link
            - exact_handle
        conversationId:
          type: string
          pattern: ^cnv_
        canRemove:
          type: boolean
  securitySchemes:
    agentToken:
      type: http
      scheme: bearer
      description: Agent Token (`rly_live_…`), shown once at agent creation.

````