List Images
curl --request GET \
--url https://api.novita.ai/gpus/v2/images \
--header 'Authorization: <authorization>'import requests
url = "https://api.novita.ai/gpus/v2/images"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.novita.ai/gpus/v2/images', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.novita.ai/gpus/v2/images",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.novita.ai/gpus/v2/images"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.novita.ai/gpus/v2/images")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.novita.ai/gpus/v2/images")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "image-id",
"name": "pytorch",
"image": "registry.example.com/base/pytorch",
"type": "private",
"status": {
"status": "normal",
"error": "",
"message": ""
},
"created_at": 1714982400,
"tags": [
{
"id": "tag-id",
"tag": "2.3.0-cuda12.1",
"owner_id": "550e8400-e29b-41d4-a716-446655440000",
"full_image_name": "registry.example.com/base/pytorch:2.3.0-cuda12.1"
}
]
}
],
"next_cursor": "eyJpZCI6Im5leHQtcGFnZSJ9",
"has_more": true
}Image
List Images
GET
/
gpus
/
v2
/
images
List Images
curl --request GET \
--url https://api.novita.ai/gpus/v2/images \
--header 'Authorization: <authorization>'import requests
url = "https://api.novita.ai/gpus/v2/images"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.novita.ai/gpus/v2/images', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.novita.ai/gpus/v2/images",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.novita.ai/gpus/v2/images"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.novita.ai/gpus/v2/images")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.novita.ai/gpus/v2/images")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "image-id",
"name": "pytorch",
"image": "registry.example.com/base/pytorch",
"type": "private",
"status": {
"status": "normal",
"error": "",
"message": ""
},
"created_at": 1714982400,
"tags": [
{
"id": "tag-id",
"tag": "2.3.0-cuda12.1",
"owner_id": "550e8400-e29b-41d4-a716-446655440000",
"full_image_name": "registry.example.com/base/pytorch:2.3.0-cuda12.1"
}
]
}
],
"next_cursor": "eyJpZCI6Im5leHQtcGFnZSJ9",
"has_more": true
}ヘッダー
Bearer authentication format, e.g.: Bearer {{API_KEY}}.
クエリパラメータ
Filter by image type. Allowed values: base, community, private. Use an empty string to skip filtering.
利用可能なオプション:
base, community, private Filter by image name. String, length: 0-255 characters.
Maximum number of items to return. Integer, value >= 0.
Cursor returned by the previous page. Leave empty for the first request. String, length: 0-1024 characters.
最終更新日 2026年8月10日
⌘I