List GPU types
curl --request GET \
--url https://api.aireserve.com/v1/gpu/catalog/gpus \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/gpu/catalog/gpus"
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/catalog/gpus', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"displayName": "<string>",
"memoryGb": 123,
"maxCount": 123,
"securePriceUsdPerHour": 123,
"dataCenterAvailability": [
{
"dataCenterId": "<string>",
"availability": "NONE"
}
]
}
]
}GPU Compute
List GPU types
Returns available GPU models, per-data-center availability, and current list prices for the Secure Cloud on-demand pool. Browsing the catalog does not reserve capacity — availability and pricing are rechecked at quote time. Results may be cached server-side for up to 15 minutes.
GET
/
v1
/
gpu
/
catalog
/
gpus
List GPU types
curl --request GET \
--url https://api.aireserve.com/v1/gpu/catalog/gpus \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/gpu/catalog/gpus"
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/catalog/gpus', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"displayName": "<string>",
"memoryGb": 123,
"maxCount": 123,
"securePriceUsdPerHour": 123,
"dataCenterAvailability": [
{
"dataCenterId": "<string>",
"availability": "NONE"
}
]
}
]
}Authorizations
Your AI Reserve API key (aireserve_api_…) from the API Keys page in the portal (https://portal.aireserve.com/keys).
Response
200 - application/json
GPU catalog.
Show child attributes
Show child attributes