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

# List Credentials

> Returns a paginated list of stored credentials.



## OpenAPI

````yaml https://api.selcor.ai/v1/openapi.json get /v1/relay/credentials
openapi: 3.1.0
info:
  title: Selcor Partner API
  version: 0.1.0
  description: API for managing workspaces, locations, voice agents, and relay executions.
servers:
  - url: https://api.selcor.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/relay/credentials:
    get:
      tags:
        - Relay Credentials
      summary: List Credentials
      description: Returns a paginated list of stored credentials.
      parameters:
        - schema:
            type: number
            minimum: 1
            maximum: 100
            default: 25
            example: 25
          required: false
          name: limit
          in: query
        - schema:
            type: string
          required: false
          name: cursor
          in: query
      responses:
        '200':
          description: List of credentials
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Credential'
                  pagination:
                    type: object
                    properties:
                      has_more:
                        type: boolean
                      next_cursor:
                        type: string
                    required:
                      - has_more
                  request_id:
                    type: string
                required:
                  - data
                  - pagination
                  - request_id
      security:
        - bearerAuth: []
components:
  schemas:
    Credential:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        platform:
          type: string
        login_url:
          type: string
        username:
          type: string
        verified:
          type: boolean
        last_verified:
          type: string
          nullable: true
        created_at:
          type: string
      required:
        - id
        - label
        - platform
        - login_url
        - username
        - verified
        - last_verified
        - created_at
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'API key in format: sk_live_...'

````