List registry credentials
curl --request GET \
--url https://api.aireserve.com/v1/gpu/registries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/gpu/registries"
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/registries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"registryUrl": "<string>",
"username": "<string>",
"status": "rotating",
"createdAt": "2023-11-07T05:31:56Z"
}
]
}GPU Compute
List registry credentials
Returns registry credential metadata for your organization. Credential secrets (passwords/tokens) are never returned. Response shape: { data: ComputeRegistry[] }. Requires compute read access.
GET
/
v1
/
gpu
/
registries
List registry credentials
curl --request GET \
--url https://api.aireserve.com/v1/gpu/registries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/gpu/registries"
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/registries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"registryUrl": "<string>",
"username": "<string>",
"status": "rotating",
"createdAt": "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).
Response
200 - application/json
Registry credential list.
Show child attributes
Show child attributes