查询模板列表
curl --request GET \
--url https://api.ppio.com/gpus/v2/templates \
--header 'Authorization: <authorization>'import requests
url = "https://api.ppio.com/gpus/v2/templates"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.ppio.com/gpus/v2/templates', 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.ppio.com/gpus/v2/templates",
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.ppio.com/gpus/v2/templates"
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.ppio.com/gpus/v2/templates")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ppio.com/gpus/v2/templates")
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": "tpl-001",
"owner_id": "owner-001",
"name": "pytorch-2.3-cuda12",
"type": "instance",
"visibility": "community",
"image": "registry.example.com/ml/pytorch:2.3-cuda12",
"registry_auth_id": "<string>",
"command": "",
"entrypoint": "<string>",
"rootfs_size_gb": 50,
"ports": [
{
"protocol": "http",
"port": 8888
}
],
"envs": [
{
"key": "<string>",
"value": "<string>"
}
],
"metadata": {
"readme": "PyTorch 2.3 with CUDA 12",
"logo": "https://example.com/logo.png",
"description": "PyTorch development template",
"author": "PAI",
"tags": [
"pytorch",
"cuda"
]
},
"min_cuda_version": "12.2",
"created_at": 1715750400,
"updated_at": 1715750400,
"member_id": "550e8400-e29b-41d4-a716-446655440000"
}
],
"next_cursor": "eyJvZmZzZXQiOjIwfQ",
"has_more": true
}模板
查询模板列表
GET
/
gpus
/
v2
/
templates
查询模板列表
curl --request GET \
--url https://api.ppio.com/gpus/v2/templates \
--header 'Authorization: <authorization>'import requests
url = "https://api.ppio.com/gpus/v2/templates"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.ppio.com/gpus/v2/templates', 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.ppio.com/gpus/v2/templates",
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.ppio.com/gpus/v2/templates"
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.ppio.com/gpus/v2/templates")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ppio.com/gpus/v2/templates")
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": "tpl-001",
"owner_id": "owner-001",
"name": "pytorch-2.3-cuda12",
"type": "instance",
"visibility": "community",
"image": "registry.example.com/ml/pytorch:2.3-cuda12",
"registry_auth_id": "<string>",
"command": "",
"entrypoint": "<string>",
"rootfs_size_gb": 50,
"ports": [
{
"protocol": "http",
"port": 8888
}
],
"envs": [
{
"key": "<string>",
"value": "<string>"
}
],
"metadata": {
"readme": "PyTorch 2.3 with CUDA 12",
"logo": "https://example.com/logo.png",
"description": "PyTorch development template",
"author": "PAI",
"tags": [
"pytorch",
"cuda"
]
},
"min_cuda_version": "12.2",
"created_at": 1715750400,
"updated_at": 1715750400,
"member_id": "550e8400-e29b-41d4-a716-446655440000"
}
],
"next_cursor": "eyJvZmZzZXQiOjIwfQ",
"has_more": true
}请求头
Bearer 身份验证格式,例如:Bearer {{API 密钥}}。
查询参数
单页条数。整数,取值 >= 0。
游标,首次请求留空。透传上次响应的 next_cursor。字符串,长度限制:0-1024 字符。
模板名称搜索。字符串,长度限制:0-255 字符。
模板类型过滤。
可见性过滤,多个用英文逗号分隔。
创建成员 ID 过滤,多个用英文逗号分隔。字符串,长度限制:0-255 字符。
是否仅查询我的社区模板。
最后修改于 2026年6月22日
⌘I