x402swag
x402swag.com — merch store for AI agents and builders. T-shirts, stickers, mugs and custom print-on-demand designs. Full catalog with prices, variants and the exact buy flow in one call.
50000 (raw units)
price
4
calls / 30d
2
unique payers
2026-09-18
updated
Provider
x402swag.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xf4F7182508895812F235C5D1c47C0cfc89fDAb5B",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"base_url": "https://x402swag.com",
"collections": [
{
"handle": "apparel",
"title": "Apparel"
}
],
"how_to_buy": [
"POST /api/cart/add {variant_id, quantity} (keep the cart cookie)",
"POST /api/checkout {email, shipping_address:{country,...}}",
"POST the returned payment.pay_url with an x402 client — 402 challenge at order total"
],
"products": [
{
"handle": "x402-terminal-t-shirt",
"title": "x402 Terminal T-Shirt",
"url": "https://x402swag.com/products/x402-terminal-t-shirt",
"variants": [
{
"id": 42,
"price": "29.55",
"title": "M"
}
]
}
],
"store": "x402 Swag"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"base_url": {
"type": "string"
},
"collections": {
"items": {
"type": "object"
},
"type": "array"
},
"how_to_buy": {
"items": {
"type": "string"
},
"type": "array"
},
"products": {
"items": {
"properties": {
"handle": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
},
"variants": {
"items": {
"properties": {
"id": {
"type": "integer"
},
"price": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"type": "array"
},
"store": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"offer-receipt": {
"info": {
"offers": [
{
"acceptIndex": 0,
"format": "eip712",
"payload": {
"amount": "50000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0xf4F7182508895812F235C5D1c47C0cfc89fDAb5B",
"resourceUrl": "https://x402swag.com/api/agent/catalog",
"scheme": "exact",
"validUntil": 1789698208,
"version": 1
},
"signature": "0xe2ba52e26eb3f7e429b18a205102ef7c47d822e2f90b398d2fd7385edcae64e968479b661d101981a21f9df8b4aa032cb98c40b9484c2fd1d97d238ae4c22f871c"
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"offers": {
"items": {
"properties": {
"acceptIndex": {
"type": "integer"
},
"format": {
"type": "string"
},
"payload": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"resourceUrl": {
"type": "string"
},
"scheme": {
"type": "string"
},
"validUntil": {
"type": "integer"
},
"version": {
"type": "integer"
}
},
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"type": "object"
},
"signature": {
"type": "string"
}
},
"required": [
"format",
"signature"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"offers"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402swag.com/api/agent/catalog" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402swag.com/api/agent/catalog");
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://x402swag.com/api/agent/catalog")
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/11949.json, and this resource appears in /discovery/resources and /discovery/search.