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

# List data centers

> Returns the list of RunPod Secure Cloud data centers available for on-demand pods and network volumes.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/gpu/catalog/datacenters
openapi: 3.0.3
info:
  title: AI Reserve Gateway API
  description: >-
    The AI Reserve API surface — OpenAI-compatible chat completions,
    Anthropic-compatible messages, Bedrock Converse, images, video, files,
    text-to-speech, realtime voice sessions, and GPU Compute pod/volume
    management — all behind one endpoint and one API key.
  version: 1.0.0
servers:
  - url: https://api.aireserve.com
security:
  - bearerAuth: []
paths:
  /v1/gpu/catalog/datacenters:
    get:
      tags:
        - GPU Compute
      summary: List data centers
      description: >-
        Returns the list of RunPod Secure Cloud data centers available for
        on-demand pods and network volumes.
      responses:
        '200':
          description: Data center list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ComputeDataCenter'
components:
  schemas:
    ComputeDataCenter:
      type: object
      required:
        - id
        - name
      properties:
        id:
          type: string
          description: Data center identifier (e.g. `EU-RO-1`, `US-TX-3`).
        name:
          type: string
          description: Human-readable location name.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your AI Reserve API key (aireserve_api_…) from the API Keys page in the
        portal (https://portal.aireserve.com/keys).

````