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

# List locations

> Returns available storage locations where you can create storages. Each location represents a geographic region with specific data center facilities.



## OpenAPI

````yaml /api-reference/services_documented/object_storage_api.yaml get /storage/provisioning/v1/location
openapi: 3.1.0
info:
  title: Gcore OpenAPI – Object Storage API
  description: >-
    This OpenAPI is an aggregated OpenAPI specification that unifies all Gcore
    products into a single file. It covers Cloud, CDN, DNS, WAAP, DDoS
    Protection, Object Storage, Streaming, and FastEdge services.
  version: '2026-05-14T07:00:22.640261+00:00'
servers:
  - url: https://api.gcore.com
security:
  - APIKey: []
tags:
  - name: Notifications
    x-displayName: Notifications
  - name: SSHKeys
    x-displayName: SSHKeys
  - name: Storage Locations
    x-displayName: Storage Locations
  - name: Storage
    x-displayName: Storage
  - name: Storage Statistics
    x-displayName: Storage Statistics
  - name: S3-Compatible Storage
    x-displayName: S3-Compatible Storage
  - name: SFTP Storage
    x-displayName: SFTP Storage
paths:
  /storage/provisioning/v1/location:
    get:
      tags:
        - Storage Locations
      summary: List locations
      description: >-
        Returns available storage locations where you can create storages. Each
        location represents a geographic region with specific data center
        facilities.
      operationId: locationListHttp
      responses:
        '200':
          description: clientLocationRes
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/clientLocationRes'
        '400':
          description: ErrResponse
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrResponse'
      deprecated: true
components:
  schemas:
    clientLocationRes:
      required:
        - address
        - allow_for_new_storage
        - id
        - name
        - type
      type: object
      properties:
        address:
          type: string
          description: Full hostname/address for accessing the storage endpoint
          example: s-region-1.storage.example.com
        allow_for_new_storage:
          type: string
          description: >-
            Indicates whether new storage can be created in this location:
            `allow` enables storage creation, `deny` prevents it
          example: allow
          enum:
            - deny
            - allow
        id:
          type: integer
          format: int64
          example: 1
        name:
          type: string
          example: s-region-1
        type:
          type: string
          enum:
            - s3_compatible
            - sftp
    ErrResponse:
      type: object
      properties:
        error:
          type: string
      description: ErrResponse is an error response
  securitySchemes:
    APIKey:
      description: >-
        API key for authentication. Make sure to include the word `apikey`,
        followed by a single space and then your token.

        Example: `apikey 1234$abcdef`
      type: apiKey
      in: header
      name: Authorization

````