Signed Solana settlement verification (did tx credit amount of mint to payee)
Signed Solana settlement verification (did tx credit amount of mint to payee). Free preview: GET /settle/preview
10000 (raw units)
price
5
calls / 30d
4
unique payers
2026-09-14
updated
Provider
x402.nsgoods.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc87a06DEE4c0E85912296002617120BBfd5EF990",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"amount": "415803",
"mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"payee": "8SfS2XEedD595GqpNGjgYpRhSAUidThXQHznExpbDwEX",
"tx": "5ygvXjuYao3MtHQkWzBvgXxjg9vWAoG6rMM6qVjPDLym1Qi3MtaGaWBS2hpMCp56TW7yUpP7pqaimBb6LiLTiiGu"
},
"type": "http"
},
"output": {
"example": {
"chain": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"commitment": "finalized",
"schema_version": "settle_v1",
"signature": "0x00",
"signer": "0x57fF0F084Cba33e6761503f90eEF0Da9F159350c",
"slot": 0,
"verdict": "VERIFIED"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"amount": {
"description": "Expected atomic units of the mint credited to payee.",
"type": "string"
},
"mint": {
"description": "SPL mint (default USDC EPjFWdd5...).",
"type": "string"
},
"payee": {
"description": "Solana address expected to be credited.",
"type": "string"
},
"payer": {
"description": "Optional: address expected to be a signer.",
"type": "string"
},
"tx": {
"description": "Solana transaction signature (base58).",
"type": "string"
}
},
"required": [
"tx",
"payee",
"amount"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"chain": {
"type": "string"
},
"commitment": {
"type": [
"string",
"null"
]
},
"schema_version": {
"type": "string"
},
"signature": {
"type": "string"
},
"signer": {
"type": "string"
},
"slot": {
"type": [
"integer",
"null"
]
},
"verdict": {
"enum": [
"VERIFIED",
"REFUTED",
"UNCONFIRMED",
"NOT_FOUND",
"not_evaluated"
],
"type": "string"
}
},
"required": [
"schema_version",
"verdict",
"chain",
"signer",
"signature"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.nsgoods.org/settle" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.nsgoods.org/settle");
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://x402.nsgoods.org/settle")
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/7964.json, and this resource appears in /discovery/resources and /discovery/search.