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

# List Service

> Lists all services for the authenticated user or organization.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/deployment/list
openapi: 3.1.0
info:
  title: Cycls Cloud API
  description: >

    ## Deploy serverless functions in seconds


    Cycls Cloud lets you deploy containerized functions to the cloud with a
    single command.


    ### Authentication


    All endpoints require authentication via:

    - **API Key**: Pass `X-API-Key` header

    - **JWT**: Pass `Authorization: Bearer <token>` header


    ### Quick Start


    ```bash

    curl -X POST https://api.cycls.ai/v1/deploy \
      -H "X-API-Key: your_api_key" \
      -F "function_name=hello" \
      -F "source=@source.tar.gz"
    ```
  contact:
    name: Cycls
    url: https://cycls.com/
  version: 1.0.0
servers:
  - url: https://api.cycls.ai
    description: Cycls Cloud
security: []
tags:
  - name: Deployments
    description: Deploy, list, and manage your services
  - name: Volumes
    description: Named storage, attached to deployments by mount path
  - name: Logs
    description: Fetch service logs
  - name: Billing
    description: Subscription and usage
paths:
  /v1/deployment/list:
    get:
      tags:
        - Deployments
      summary: List Service
      description: Lists all services for the authenticated user or organization.
      operationId: list_services_v1_deployment_list_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/Service'
                type: array
                title: Response List Services V1 Deployment List Get
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
        '503':
          description: Service Unavailable
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    Service:
      properties:
        id:
          type: string
          title: Id
          description: Unique deployment ID
          examples:
            - 550e8400-e29b-41d4-a716-446655440000
        name:
          type: string
          title: Name
          description: Service name
          examples:
            - my-function
        url:
          type: string
          title: Url
          description: Public URL for the service
          examples:
            - https://my-function.cycls.ai
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Deployment timestamp
        region:
          type: string
          title: Region
          description: Cloud region
          examples:
            - me-central2
        owner_id:
          type: string
          title: Owner Id
          description: Owner ID (user or organization)
      type: object
      required:
        - id
        - name
        - url
        - created_at
        - region
        - owner_id
      title: Service
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Your Cycls API key, from https://cloud.cycls.com. Sent as the X-API-Key
        header. This is the CYCLS_API_KEY the CLI uses.
    HTTPBearer:
      type: http
      scheme: bearer
      description: A session bearer token, as an alternative to an API key.

````