> ## 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.

# Get storage

> Retrieves detailed information about a specific storage including its configuration, credentials, and current status.

Deprecated: Use GET /v4/`object_storages`/{`storage_id`} for S3 storages or GET /v4/`sftp_storages`/{`storage_id`} for SFTP storages instead.



## OpenAPI

````yaml /api-reference/services_documented/object_storage_api.yaml get /storage/provisioning/v1/storage/{storage_id}
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-07T20:33:46.548242+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/storage/{storage_id}:
    get:
      tags:
        - Storage
      summary: Get storage
      description: >-
        Retrieves detailed information about a specific storage including its
        configuration, credentials, and current status.


        Deprecated: Use GET /v4/`object_storages`/{`storage_id`} for S3 storages
        or GET /v4/`sftp_storages`/{`storage_id`} for SFTP storages instead.
      operationId: storageGetHttp
      parameters:
        - name: storage_id
          in: path
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: Storage
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/storage_Storage'
        '400':
          description: ErrResponse
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrResponse'
      deprecated: true
components:
  schemas:
    storage_Storage:
      required:
        - address
        - client_id
        - created_at
        - id
        - location
        - name
        - provisioning_status
        - reseller_id
        - type
      type: object
      properties:
        address:
          type: string
          description: Full hostname/address for accessing the storage endpoint
          example: s-region-1.storage.example.com
        can_restore:
          type: boolean
          description: >-
            Whether this storage can be restored if deleted (S3 storages only,
            within 2 weeks)
          example: true
        client_id:
          type: integer
          description: Client identifier who owns this storage
          format: int64
          example: 1
        created_at:
          type: string
          description: ISO 8601 timestamp when the storage was created
          format: date-time
          example: '2025-08-05T09:17:02Z'
        credentials:
          $ref: '#/components/schemas/Credentials'
        custom_config_file:
          type: boolean
          description: Whether custom configuration file is used for this storage
          example: false
        deleted_at:
          type: string
          description: >-
            ISO 8601 timestamp when the storage was deleted (only present for
            deleted storages)
          format: date-time
          example: '2025-08-05T10:30:15Z'
        disable_http:
          type: boolean
          description: Whether HTTP access is disabled for this storage (HTTPS only)
          example: false
        expires:
          type: string
          description: ISO 8601 timestamp when the storage will expire (if set)
          format: date-time
          example: '2026-08-05T09:17:02Z'
        id:
          type: integer
          description: Unique identifier for the storage instance
          format: int64
          example: 1
        location:
          type: string
          description: Geographic location code where the storage is provisioned
          example: s-region-1
        name:
          type: string
          description: User-defined name for the storage instance
          example: 1-my-storage-prod
        provisioning_status:
          type: string
          description: Current provisioning status of the storage instance
          example: ok
          enum:
            - creating
            - ok
            - updating
            - deleting
            - deleted
        reseller_id:
          type: integer
          description: Reseller technical client ID associated with the client
          format: int64
          example: 1
        rewrite_rules:
          type: object
          additionalProperties:
            type: string
          description: Custom URL rewrite rules for the storage (admin-configurable)
        server_alias:
          type: string
          description: Custom domain alias for accessing the storage
          example: my-storage.example.com
        type:
          type: string
          description: >-
            Storage protocol type - either S3-compatible object storage or SFTP
            file transfer
          example: s3_compatible
          enum:
            - sftp
            - s3_compatible
    ErrResponse:
      type: object
      properties:
        error:
          type: string
      description: ErrResponse is an error response
    Credentials:
      type: object
      properties:
        keys:
          type: array
          description: >-
            SSH public keys associated with SFTP storage for passwordless
            authentication
          items:
            $ref: '#/components/schemas/Key'
        s3:
          $ref: '#/components/schemas/S3Credentials'
        sftp_password:
          type: string
          description: >-
            Generated or user-provided password for SFTP access (only present
            for SFTP storage type)
          example: Xy9$mN2p!qR8
    Key:
      type: object
      properties:
        created_at:
          type: string
          description: ISO 8601 timestamp when the SSH key was created
          format: date-time
          example: '2025-08-05T09:15:00Z'
        id:
          type: integer
          description: Unique identifier for the SSH key
          format: int64
          example: 123
        name:
          type: string
          description: User-defined name for the SSH key
          example: my-production-key
    S3Credentials:
      type: object
      properties:
        access_key:
          type: string
          description: S3-compatible access key identifier for authentication
          example: AKIAIOSFODNN7EXAMPLE
        secret_key:
          type: string
          description: S3-compatible secret key for authentication (keep secure)
          example: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
  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

````