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

# Get a platform

> Fetch a single catalog platform by id. No authentication required.



## OpenAPI

````yaml /openapi.json get /catalog/platforms/{platform_id}
openapi: 3.1.0
info:
  title: GetDialed Flows API
  version: 0.1.0
servers:
  - url: https://api.getdialed.ai/flows
    description: Production
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /catalog/platforms/{platform_id}:
    get:
      tags:
        - catalog
      summary: Get a platform
      description: Fetch a single catalog platform by id. No authentication required.
      operationId: get_platform_catalog_platforms__platform_id__get
      parameters:
        - name: platform_id
          in: path
          required: true
          schema:
            type: string
            title: Platform Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformResponse'
        '404':
          description: No such platform
          content:
            application/json:
              example:
                detail: 'Platform not found: five9'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: Rate limit exceeded — retry after the Retry-After header
          headers:
            Retry-After:
              description: Seconds to wait before retrying
              schema:
                type: integer
          content:
            application/json:
              example:
                detail: 'Rate limit exceeded: 100 per 1 minute'
components:
  schemas:
    PlatformResponse:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        icon:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon
        tags:
          items:
            type: string
          type: array
          title: Tags
          default: []
        status:
          type: string
          title: Status
      type: object
      required:
        - id
        - name
        - status
      title: PlatformResponse
      example:
        icon: five9
        id: five9
        name: Five9
        status: active
        tags:
          - contact-center
          - voice
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````