Restore all four needs in one care action
Restore all four needs in one care action. Any verified payer may care for any hatched target.
30000 (raw units)
price
41
calls / 30d
4
unique payers
2026-09-18
updated
Provider
omniguchi.0000402.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xee72b902af7466023595512e3359bb5bf312977c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"pet_wallet": "0x0000402000000000000000000000000000000402"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"action": {
"actor_wallet": "0x0000402000000000000000000000000000000402",
"id": "pack",
"pet_wallet": "0x0000402000000000000000000000000000000402",
"price": "$0.03 USDC",
"price_micro_usdc": 30000,
"type": "care"
},
"hatched": true,
"owner_wallet": "0x0000402000000000000000000000000000000402",
"status": "active"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"pet_wallet": {
"description": "Optional target creature wallet. Omit to target the verified payer.",
"pattern": "^0x[0-9a-fA-F]{40}$",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://omniguchi.0000402.xyz/care/pack" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://omniguchi.0000402.xyz/care/pack");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://omniguchi.0000402.xyz/care/pack")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5402.json, and this resource appears in /discovery/resources and /discovery/search.