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

# List clusters

> Retrieve all available clusters (data center locations) where applications and databases can be deployed. This is reference data and does not require specific resource permissions.



## OpenAPI

````yaml https://api.sevalla.com/v3/openapi.json get /resources/clusters
openapi: 3.1.0
info:
  title: Sevalla API docs
  version: 1.0.0
servers:
  - url: https://api.sevalla.com/v3
security:
  - bearerAuth: []
paths:
  /resources/clusters:
    get:
      tags:
        - Resources
      summary: List clusters
      description: >-
        Retrieve all available clusters (data center locations) where
        applications and databases can be deployed. This is reference data and
        does not require specific resource permissions.
      operationId: listClustersV3
      responses:
        '200':
          description: List of available clusters
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                      pattern: >-
                        ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                      description: Unique identifier for the cluster
                      example: fb5e5168-4281-4bec-94c5-0d1584e9e657
                    name:
                      type: string
                      description: Internal name of the cluster
                      example: us-central1
                    display_name:
                      anyOf:
                        - type: string
                        - type: 'null'
                      description: >-
                        Human-readable name for the cluster shown in the
                        dashboard
                      example: Iowa, USA
                    location:
                      type: string
                      description: Google Cloud region where the cluster is located
                      example: us-central1
                  required:
                    - id
                    - name
                    - display_name
                    - location
                  additionalProperties: false
                description: List of available clusters
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Error message
                    example: Unauthorized
                  status:
                    type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                    description: HTTP status code
                    example: 401
                  data:
                    type: object
                    properties:
                      code:
                        description: Error tracking code for support reference
                        example: err-abc-123
                        type: string
                      message:
                        description: Additional error details or instructions
                        example: >-
                          If you need assistance, please contact support and
                          provide this error code.
                        type: string
                    additionalProperties: false
                required:
                  - message
                  - status
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    description: Error message
                    example: Internal Server Error
                  status:
                    type: integer
                    minimum: -9007199254740991
                    maximum: 9007199254740991
                    description: HTTP status code
                    example: 500
                  data:
                    type: object
                    properties:
                      code:
                        description: Error tracking code for support reference
                        example: err-abc-123
                        type: string
                      message:
                        description: Additional error details or instructions
                        example: >-
                          If you need assistance, please contact support and
                          provide this error code.
                        type: string
                    additionalProperties: false
                required:
                  - message
                  - status
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key authentication. Pass your API key as a Bearer token in the
        Authorization header.

````