> ## 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.
Deprecated: Use GET /v4/locations instead.



## OpenAPI

````yaml /api-reference/services_documented/object_storage_api.yaml get /storage/provisioning/v2/locations
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-15T06:37:28.230198+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/v2/locations:
    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.

        Deprecated: Use GET /v4/locations instead.
      operationId: locationListHttpV2
      parameters:
        - name: offset
          in: query
          schema:
            minimum: 0
            type: integer
            format: uint64
        - name: limit
          in: query
          schema:
            maximum: 1000
            minimum: 1
            type: integer
            format: uint64
            default: 10
      responses:
        '200':
          description: LocationListEndpointResV2
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocationListEndpointResV2'
        '400':
          description: ErrResponse
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrResponse'
      deprecated: true
components:
  schemas:
    LocationListEndpointResV2:
      required:
        - count
        - results
      type: object
      properties:
        count:
          type: integer
          description: Total number of locations available
          format: int64
          example: 1
        results:
          type: array
          description: The list of locations
          items:
            $ref: '#/components/schemas/LocationV2'
      description: LocationListEndpointResV2 response for v2
    ErrResponse:
      type: object
      properties:
        error:
          type: string
      description: ErrResponse is an error response
    LocationV2:
      required:
        - address
        - allow_for_new_storage
        - name
        - title
        - type
      type: object
      properties:
        address:
          type: string
          description: >-
            Full hostname/address for accessing the storage endpoint in this
            location
          example: s-region-1.storage.example.com
        allow_for_new_storage:
          type: string
          description: Indicates whether new storage can be created in this location
          example: allow
          enum:
            - deny
            - allow
        name:
          type: string
          description: Location code (region identifier)
          example: s-region-1
        title:
          type: string
          description: Human-readable title for the location
          example: S3 Luxembourg
        type:
          type: string
          description: Storage protocol type supported in this location
          example: s3_compatible
          enum:
            - s3_compatible
            - sftp
      description: LocationV2 represents location data for v2 API where title is a string
  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

````