Get volume
curl --request GET \
--url https://api.aireserve.com/v1/gpu/volumes/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/gpu/volumes/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aireserve.com/v1/gpu/volumes/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"dataCenterId": "<string>",
"sizeGb": 123,
"status": "requested",
"createdAt": "2023-11-07T05:31:56Z",
"attachedPodId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"hourlyRateUsd": "<string>",
"paidThroughAt": "2023-11-07T05:31:56Z",
"delinquency": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"unpaidAmountUsd": "<string>",
"graceEndsAt": "2023-11-07T05:31:56Z"
}
}GPU Compute
Get volume
Returns current state, size, billing status, and delinquency for a network volume owned by your organization.
GET
/
v1
/
gpu
/
volumes
/
{id}
Get volume
curl --request GET \
--url https://api.aireserve.com/v1/gpu/volumes/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/gpu/volumes/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aireserve.com/v1/gpu/volumes/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"dataCenterId": "<string>",
"sizeGb": 123,
"status": "requested",
"createdAt": "2023-11-07T05:31:56Z",
"attachedPodId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"hourlyRateUsd": "<string>",
"paidThroughAt": "2023-11-07T05:31:56Z",
"delinquency": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"unpaidAmountUsd": "<string>",
"graceEndsAt": "2023-11-07T05:31:56Z"
}
}Authorizations
Your AI Reserve API key (aireserve_api_…) from the API Keys page in the portal (https://portal.aireserve.com/keys).
Path Parameters
Response
Volume detail.
A RunPod network volume owned by your organization. Storage billing accrues continuously regardless of pod state.
Available options:
requested, creating, ready, deleting, deleted, failed Current total hourly storage charge in USD, six-decimal precision.
Active delinquency record if any. Present on GET /v1/gpu/volumes/{id} only.
Show child attributes
Show child attributes