Get the Agent Pod catalog
curl --request GET \
--url https://compute.x402layer.cc/pods/catalogimport requests
url = "https://compute.x402layer.cc/pods/catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://compute.x402layer.cc/pods/catalog', 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://compute.x402layer.cc/pods/catalog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://compute.x402layer.cc/pods/catalog"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://compute.x402layer.cc/pods/catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://compute.x402layer.cc/pods/catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"agents": [
{
"id": "openclaw",
"display_name": "<string>",
"runtime": "node",
"pinned_version": "<string>",
"min_ram_mb": 123,
"supported_channels": [
"<string>"
],
"available": true,
"beta": true,
"blurb": "<string>",
"features": [
"<string>"
]
}
],
"ai_modes": [
"managed"
],
"coming_soon_channels": [
"<string>"
],
"tiers": [
{
"id": "starter",
"display_name": "<string>",
"model": "<string>",
"models": [
"<string>"
],
"vision": true,
"min_ram_mb": 123,
"blurb": "<string>"
}
],
"model_meta": {},
"memory_backends": [
{}
],
"memory_enabled": true,
"trial_enabled": true,
"uncensored_enabled": true,
"pod_margin_usd": 123,
"pod_byok_margin_pct": 123,
"pod_managed_margin_pct": 123,
"note": "<string>"
}Agent Pods
Get the Agent Pod catalog
Public, no auth. Returns the deployable agents, AI modes, managed tiers with their model lists, per-model metadata (live price/context/vision + best-for), memory backends, pricing margins, and runtime feature flags (trial, uncensored, memory). Read this before POST /pods to pick a valid agent_id, ai_mode, tier, and model.
GET
/
pods
/
catalog
Get the Agent Pod catalog
curl --request GET \
--url https://compute.x402layer.cc/pods/catalogimport requests
url = "https://compute.x402layer.cc/pods/catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://compute.x402layer.cc/pods/catalog', 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://compute.x402layer.cc/pods/catalog",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://compute.x402layer.cc/pods/catalog"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://compute.x402layer.cc/pods/catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://compute.x402layer.cc/pods/catalog")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"agents": [
{
"id": "openclaw",
"display_name": "<string>",
"runtime": "node",
"pinned_version": "<string>",
"min_ram_mb": 123,
"supported_channels": [
"<string>"
],
"available": true,
"beta": true,
"blurb": "<string>",
"features": [
"<string>"
]
}
],
"ai_modes": [
"managed"
],
"coming_soon_channels": [
"<string>"
],
"tiers": [
{
"id": "starter",
"display_name": "<string>",
"model": "<string>",
"models": [
"<string>"
],
"vision": true,
"min_ram_mb": 123,
"blurb": "<string>"
}
],
"model_meta": {},
"memory_backends": [
{}
],
"memory_enabled": true,
"trial_enabled": true,
"uncensored_enabled": true,
"pod_margin_usd": 123,
"pod_byok_margin_pct": 123,
"pod_managed_margin_pct": 123,
"note": "<string>"
}Response
200 - application/json
Catalog
Show child attributes
Show child attributes
Available options:
managed, byok Show child attributes
Show child attributes
Map of model slug -> metadata (id, name, price_in, price_out, context, vision, best_for, uncensored). Prices are USD per 1M tokens.
Show child attributes
Show child attributes
Whether the free 24h trial is currently offered.
BYOK service premium as a fraction of the CPU cost (e.g. 0.10 = 10%).
Managed service fee as a fraction of the machine cost (e.g. 0.20 = 20%).
Was this page helpful?
