curl --request PATCH \
--url https://compute.x402layer.cc/pods/v1/pods/{id}/wallet \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"send_enabled": true,
"per_tx_cap_usd": 123,
"autonomy_mode": "<string>"
}
'import requests
url = "https://compute.x402layer.cc/pods/v1/pods/{id}/wallet"
payload = {
"send_enabled": True,
"per_tx_cap_usd": 123,
"autonomy_mode": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({send_enabled: true, per_tx_cap_usd: 123, autonomy_mode: '<string>'})
};
fetch('https://compute.x402layer.cc/pods/v1/pods/{id}/wallet', 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/v1/pods/{id}/wallet",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'send_enabled' => true,
'per_tx_cap_usd' => 123,
'autonomy_mode' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://compute.x402layer.cc/pods/v1/pods/{id}/wallet"
payload := strings.NewReader("{\n \"send_enabled\": true,\n \"per_tx_cap_usd\": 123,\n \"autonomy_mode\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://compute.x402layer.cc/pods/v1/pods/{id}/wallet")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"send_enabled\": true,\n \"per_tx_cap_usd\": 123,\n \"autonomy_mode\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://compute.x402layer.cc/pods/v1/pods/{id}/wallet")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"send_enabled\": true,\n \"per_tx_cap_usd\": 123,\n \"autonomy_mode\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"wallet": {
"addresses": {
"base": "<string>",
"solana": "<string>"
},
"balances": [
{}
],
"policy": {
"send_enabled": true,
"per_tx_cap_usd": 123,
"daily_cap_usd": 123,
"daily_cap_source": "platform",
"daily_cap_enforced_per": "pod",
"autonomy_mode": "<string>"
}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}Update the pod wallet policy
Base URL https://compute.x402layer.cc/pods/v1. Auth is X-API-Key only. This is the PROGRAMMATIC surface and is NOT the same as the dashboard pod routes (POST /pods, PATCH /pods/{id}/settings, …), which take a wallet signature or a browser session and are free to change. Every response carries x-request-id.
Requires the pods:wallet:write scope. This ARMS MONEY: raising a cap is the step before spending it, and a bearer key that can raise its own limit has no limit. A plain API key gets a 403 carrying details.required_scope = pods:wallet:write.
daily_cap_usd is refused here on purpose. Accepting it would have quietly written the PER-TRANSACTION cap, so “limiting the day to 100"wouldhaveauthorised100 a transaction with no daily bound at all.
Returns the wallet, re-read. Rate limit: 30/hour per account.
curl --request PATCH \
--url https://compute.x402layer.cc/pods/v1/pods/{id}/wallet \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"send_enabled": true,
"per_tx_cap_usd": 123,
"autonomy_mode": "<string>"
}
'import requests
url = "https://compute.x402layer.cc/pods/v1/pods/{id}/wallet"
payload = {
"send_enabled": True,
"per_tx_cap_usd": 123,
"autonomy_mode": "<string>"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({send_enabled: true, per_tx_cap_usd: 123, autonomy_mode: '<string>'})
};
fetch('https://compute.x402layer.cc/pods/v1/pods/{id}/wallet', 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/v1/pods/{id}/wallet",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'send_enabled' => true,
'per_tx_cap_usd' => 123,
'autonomy_mode' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://compute.x402layer.cc/pods/v1/pods/{id}/wallet"
payload := strings.NewReader("{\n \"send_enabled\": true,\n \"per_tx_cap_usd\": 123,\n \"autonomy_mode\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://compute.x402layer.cc/pods/v1/pods/{id}/wallet")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"send_enabled\": true,\n \"per_tx_cap_usd\": 123,\n \"autonomy_mode\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://compute.x402layer.cc/pods/v1/pods/{id}/wallet")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"send_enabled\": true,\n \"per_tx_cap_usd\": 123,\n \"autonomy_mode\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"wallet": {
"addresses": {
"base": "<string>",
"solana": "<string>"
},
"balances": [
{}
],
"policy": {
"send_enabled": true,
"per_tx_cap_usd": 123,
"daily_cap_usd": 123,
"daily_cap_source": "platform",
"daily_cap_enforced_per": "pod",
"autonomy_mode": "<string>"
}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
}
}Authorizations
A compute API key (x402c_...). Mint one in the dashboard under Settings -> API Keys. This is the ONLY auth /pods/v1/* accepts - wallet signatures are bound to method+path+body and do not survive the internal hop, so signature callers must use the dashboard routes instead. Two extra scopes gate the dangerous powers: pods:wallet:write (pod wallet money, backup passphrase) and pods:control:write (connectors, full-power control socket).
Path Parameters
Pod id, as returned by create/list.
Body
Response
The wallet, re-read.
Show child attributes
Show child attributes
Was this page helpful?
