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

# List services for a platform

> List the services a platform exposes. No authentication required. Returns an empty list for an unknown platform.



## OpenAPI

````yaml /openapi.json get /catalog/platforms/{platform_id}/services
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}/services:
    get:
      tags:
        - catalog
      summary: List services for a platform
      description: >-
        List the services a platform exposes. No authentication required.
        Returns an empty list for an unknown platform.
      operationId: list_services_for_platform_catalog_platforms__platform_id__services_get
      parameters:
        - name: platform_id
          in: path
          required: true
          schema:
            type: string
            title: Platform Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ServiceResponse'
                title: >-
                  Response List Services For Platform Catalog Platforms 
                  Platform Id  Services Get
        '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:
    ServiceResponse:
      properties:
        id:
          type: string
          title: Id
        platform_id:
          type: string
          title: Platform Id
        name:
          type: string
          title: Name
        protocol:
          type: string
          title: Protocol
        auth_method:
          type: string
          title: Auth Method
        base_url:
          type: string
          title: Base Url
        docs_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Docs Url
        status:
          type: string
          title: Status
      type: object
      required:
        - id
        - platform_id
        - name
        - protocol
        - auth_method
        - base_url
        - status
      title: ServiceResponse
      example:
        auth_method: basic_auth
        base_url: https://api.five9.com/wsadmin/v13
        docs_url: >-
          https://webapps.five9.com/assets/files/for_customers/documentation/apis/config-webservices-api-reference-guide.pdf
        id: five9__configuration
        name: Configuration API
        platform_id: five9
        protocol: soap
        status: active
    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

````