List data centers
curl --request GET \
--url https://api.aireserve.com/v1/gpu/catalog/datacenters \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/gpu/catalog/datacenters"
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/datacenters', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"name": "<string>"
}
]
}GPU Compute
List data centers
Returns the list of RunPod Secure Cloud data centers available for on-demand pods and network volumes.
GET
/
v1
/
gpu
/
catalog
/
datacenters
List data centers
curl --request GET \
--url https://api.aireserve.com/v1/gpu/catalog/datacenters \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/gpu/catalog/datacenters"
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/datacenters', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"name": "<string>"
}
]
}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
Data center list.
Show child attributes
Show child attributes