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

# List available platforms

> Returns the active AI platforms a project can run against, ordered by display name. Use the returned `provider` value in reporting `services` filters. For project service selection, send either the returned `provider` or `uuid`.



## OpenAPI

````yaml /openapi.json get /api/v1/platforms
openapi: 3.1.0
info:
  title: Surfacd Public API
  version: 1.0.0
  description: >-
    Public API for Surfacd. Team-scoped operations live under
    `/api/v1/team/...`; project collections live under `/api/v1/projects`;
    project-scoped operations live under `/api/v1/projects/{project}/...`. All
    endpoints require a Bearer team API key created in Team Settings. The API
    key selects the team for team-level and collection endpoints.
servers:
  - url: https://app.surfacd.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Projects
    description: Project management endpoints. Reads only in this version.
  - name: Prompts
    description: Prompt management endpoints. Reads only in this version.
  - name: Team
    description: Team settings and plan details for the current team.
  - name: Reporting
    description: >-
      Read-only reporting endpoints for projects (brand rankings, mentions,
      visibility, matrix analysis, source data).
  - name: Reference
    description: Reference data used by create, update, and reporting filters.
  - name: Tags
    description: Project tag management endpoints.
paths:
  /api/v1/platforms:
    get:
      tags:
        - Reference
      summary: List available platforms
      description: >-
        Returns the active AI platforms a project can run against, ordered by
        display name. Use the returned `provider` value in reporting `services`
        filters. For project service selection, send either the returned
        `provider` or `uuid`.
      operationId: v1ReferencePlatforms
      responses:
        '200':
          description: The available platforms.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ProjectService'
                required:
                  - data
components:
  schemas:
    ProjectService:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
          description: Public platform UUID. May be sent in project `services` arrays.
        name:
          type: string
          description: Machine name (e.g. `chatgpt`).
        display_name:
          type: string
        provider:
          type: string
          description: >-
            Public provider slug. Use this in reporting `services` filters; it
            may also be sent in project `services` arrays.
      required:
        - uuid
        - name
        - display_name
        - provider
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token
      description: >-
        Team API key created in Team Settings. Use it with URLs for the same
        team.

````