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

> Returns all network volumes owned by your organization. Response shape: `{ data: ComputeVolume[], nextCursor?: string }`. Requires compute `read` access or higher.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/gpu/volumes
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/volumes:
    get:
      tags:
        - GPU Compute
      summary: List volumes
      description: >-
        Returns all network volumes owned by your organization. Response shape:
        `{ data: ComputeVolume[], nextCursor?: string }`. Requires compute
        `read` access or higher.
      parameters:
        - name: cursor
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Volume list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ComputeVolume'
                  nextCursor:
                    type: string
                    nullable: true
components:
  schemas:
    ComputeVolume:
      type: object
      description: >-
        A RunPod network volume owned by your organization. Storage billing
        accrues continuously regardless of pod state.
      required:
        - id
        - name
        - dataCenterId
        - sizeGb
        - status
        - createdAt
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        dataCenterId:
          type: string
        sizeGb:
          type: integer
        status:
          type: string
          enum:
            - requested
            - creating
            - ready
            - deleting
            - deleted
            - failed
        attachedPodId:
          type: string
          format: uuid
          nullable: true
        hourlyRateUsd:
          type: string
          description: Current total hourly storage charge in USD, six-decimal precision.
        paidThroughAt:
          type: string
          format: date-time
          nullable: true
        delinquency:
          type: object
          nullable: true
          description: >-
            Active delinquency record if any. Present on `GET
            /v1/gpu/volumes/{id}` only.
          properties:
            id:
              type: string
              format: uuid
            status:
              type: string
            unpaidAmountUsd:
              type: string
            graceEndsAt:
              type: string
              format: date-time
        createdAt:
          type: string
          format: date-time
  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).

````