HTTPBin Test Echo - a Sly-published x402 service running on Sly's gateway (api
HTTPBin Test Echo - a Sly-published x402 service running on Sly's gateway (api.getsly.ai). Used to validate the publish + gateway flow end-to-end. Powered by Sly (https://getsly.ai). Buyer agents call this URL with x402 payment and get a JSON slideshow back. Sly Treasury account, Demo Fintech tenant, demo/test slug.
1000 (raw units)
price
6
calls / 30d
6
unique payers
2026-09-17
updated
Provider
api.getsly.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xed181bcadb44681e44fa365521af1251625e57b7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"description": "",
"info": {
"input": {
"method": "GET",
"type": "http"
},
"output": {
"example": {
"slideshow": {
"title": "Sample"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": true,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"additionalProperties": true,
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.getsly.ai/x402/demo/test" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.getsly.ai/x402/demo/test");
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://api.getsly.ai/x402/demo/test")
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/13849.json, and this resource appears in /discovery/resources and /discovery/search.