mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Use when an agent needs x402 receipt lookup

Use when an agent needs x402 receipt lookup. Returns Fetch a previously issued settlement-verify receipt by verification_id: returns the stored on-chain verification result (payer, payee, amount, status, confirmations at verification time) with its creation timestamp. $0.002.

Do you run api.oblique.markets? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
2000 (raw units)
price
8
calls / 30d
2
unique payers
2026-09-14
updated

Provider

api.oblique.markets · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "2000",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "2000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "verification_id": "UUID returned by settlement_verify"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "chain_id": 8453,
          "created_at": "2026-08-10T12:00:00.000Z",
          "found": true,
          "result": {
            "amount_usdc": 0.01,
            "block_number": 33421187,
            "confirmations": 512,
            "found": true,
            "payee": "0x209693bc6afc0c5328ba36faf03c514ef312287c",
            "payer": "0x1c7d4b196cb0c7b01d743fbc6116a902379c7238",
            "settled": true,
            "status": "success",
            "tx_hash": "0x9a1de1a4c3f2b06a7c55e01d9f4b2b6f0e8a33c15d7f90ab12cd34ef56ab78cd",
            "verification_id": "7f3c1a90-2b44-4e0b-9a71-8d2f5c6e1b23",
            "verified_at": "2026-08-10T12:00:00.000Z"
          },
          "tx_hash": "0x9a1de1a4c3f2b06a7c55e01d9f4b2b6f0e8a33c15d7f90ab12cd34ef56ab78cd",
          "verification_id": "7f3c1a90-2b44-4e0b-9a71-8d2f5c6e1b23"
        },
        "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": {
                "verification_id": {
                  "description": "UUID returned by settlement_verify",
                  "type": "string"
                }
              },
              "required": [
                "verification_id"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "chain_id": {
              "type": "integer"
            },
            "created_at": {
              "type": "string"
            },
            "found": {
              "type": "boolean"
            },
            "result": {
              "properties": {
                "amount_usdc": {
                  "type": "number"
                },
                "block_number": {
                  "type": "integer"
                },
                "confirmations": {
                  "type": "integer"
                },
                "found": {
                  "type": "boolean"
                },
                "payee": {
                  "type": "string"
                },
                "payer": {
                  "type": "string"
                },
                "settled": {
                  "type": "boolean"
                },
                "status": {
                  "type": "string"
                },
                "tx_hash": {
                  "type": "string"
                },
                "verification_id": {
                  "type": "string"
                },
                "verified_at": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "tx_hash": {
              "type": "string"
            },
            "verification_id": {
              "type": "string"
            }
          },
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.oblique.markets/api/v1/paid/x402-receipt-lookup"
# -> 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.oblique.markets/api/v1/paid/x402-receipt-lookup");
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.oblique.markets/api/v1/paid/x402-receipt-lookup")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/519.json, and this resource appears in /discovery/resources and /discovery/search.