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

# List regions



## OpenAPI

````yaml /api-reference/openapi.json get /v1/regions
openapi: 3.1.0
info:
  title: Veri API
  description: >-
    REST API for the Veri RL post-training platform. All requests require a
    Bearer API key (`vk_` prefix).
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.veri.studio
    description: Production
security: []
tags:
  - name: Training jobs
    description: Create, monitor, and manage training jobs.
  - name: Datasets
    description: Upload and connect training datasets.
  - name: Reward functions
    description: Upload and manage reward functions.
  - name: Deployments
    description: Serve trained models and run inference.
  - name: Evaluations
    description: Score models against datasets and benchmarks.
  - name: Volumes
    description: Persistent file storage mounted into jobs.
  - name: Models
    description: Custom model registry deployments serve from.
  - name: Regions
    description: Discover available launch regions.
  - name: GPU
    description: Live GPU availability by provider and region.
  - name: Code artifacts
    description: Upload custom training script bundles.
  - name: Billing
    description: Credit balance and transaction history.
  - name: API keys
    description: Create and revoke API keys.
  - name: Account
    description: The authenticated caller's identity.
  - name: SSH keys
    description: Manage SSH key pairs for compute access.
  - name: Settings
    description: Account-level integrations (Weights & Biases).
paths:
  /v1/regions:
    get:
      tags:
        - Regions
      summary: List regions
      operationId: list
      responses:
        '200':
          description: The launch regions Veri offers, with the default flagged
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RegionList'
      security:
        - bearerAuth: []
components:
  schemas:
    RegionList:
      type: object
      required:
        - object
        - default
        - regions
      properties:
        object:
          type: string
        default:
          type: string
          description: >-
            The default/home region name (echoed for convenience / CLI
            highlighting).
        regions:
          type: array
          items:
            $ref: '#/components/schemas/RegionInfo'
    RegionInfo:
      type: object
      required:
        - name
        - default
        - launch_enabled
      properties:
        name:
          type: string
        default:
          type: boolean
          description: True for the home region used when a job specifies no region.
        launch_enabled:
          type: boolean
          description: >-
            Whether training jobs may launch into this region right now. A
            listed

            region with `launch_enabled: false` is coming soon (visible while
            its

            substrate is provisioned); submit rejects it. VS-257 Phase 1.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: API key with the `vk_` prefix. Create one from the dashboard.

````