List Available images
curl --location 'https://api.deeptrin.com/v1/rentgpu/images?limit=10&marker=12' \
--header 'Authorization: Bearer {{API_TOKEN}}'import requests
url = "https://api.deeptrin.com/v1/rentgpu/images?limit=10&marker=12"
payload = {}
headers = {
'Authorization': 'Bearer {{API_TOKEN}}'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
[
{
"name": "default",
"description": "pytoch/pytorch:latest",
"image_name": "pytoch/pytorch",
"image_tag": "latest",
"image_label": "default",
"docker_username": null,
"docker_passwd": null,
"docker_registry": null,
"public_port": null,
"onstart": null,
"options": null,
"image_type": 0,
"id": 0
},
...
]Last updated