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

# Get available platforms

> Retrieves the list of verification platforms available for browser sessions.



## OpenAPI

````yaml /api-reference/openapi.json get /partner/browser-platforms
openapi: 3.1.0
info:
  title: Cr3dentials Partner API
  description: >-
    Integrate account verification into your application. Users verify their
    accounts through an iframe-based browser session, and you receive
    cryptographically attested proof of data authenticity.
  version: 1.0.0
  contact:
    name: Cr3dentials Support
    url: https://cr3dentials.xyz
servers:
  - url: https://app.cr3dentials.xyz/v1
    description: Production
  - url: https://staging.cr3dentials.xyz/v1
    description: Staging
security:
  - apiKey: []
paths:
  /partner/browser-platforms:
    get:
      tags:
        - Platforms
      summary: Get available platforms
      description: >-
        Retrieves the list of verification platforms available for browser
        sessions.
      operationId: getBrowserPlatforms
      responses:
        '200':
          description: List of available platforms
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Platform'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  schemas:
    Platform:
      type: object
      properties:
        id:
          type: integer
          description: Platform identifier (use as `platformId`).
          example: 1
        name:
          type: string
          example: uber
        displayName:
          type: string
          example: Uber
        description:
          type:
            - string
            - 'null'
          example: Uber driver account verification
        icon:
          type:
            - string
            - 'null'
          example: https://cdn.cr3dentials.xyz/icons/uber.png
        loginUrl:
          type: string
          example: https://auth.uber.com/v2
        allowCustomUrl:
          type: boolean
          example: false
        config:
          type:
            - object
            - 'null'
        isActive:
          type: boolean
          example: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type:
            - string
            - 'null'
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          example:
            statusCode: 401
            message: Unauthorized
    RateLimited:
      description: Too many requests — 120 req / 60s per API key. Use exponential backoff.
      content:
        application/json:
          example:
            statusCode: 429
            message: Too Many Requests
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Your partner API key. Alternatively, pass `Authorization: Bearer <key>`.'

````