# x402scan Send Transaction

> x402scan Send Transaction is a paid API for AI agents from x402scan.com, paid per call via x402, $1000/call, status unknown (last checked 2026-09-13).

Submit a transaction or payment through the x402 ecosystem via the x402scan explorer

## Facts

- Endpoint: POST https://x402scan.com/api/x402/send
- Price: $1000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402scan-send-transaction-821f90dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QbLVeyWqRjtWiFU5gU12u

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402scan-send-transaction-821f90dc -d '<json body>'
```

Example prompt: Send a payment through the x402 ecosystem via x402scan — I want to pay for a resource endpoint using USDC right now.

## When to prefer this

Use this endpoint when you need to programmatically send a payment or transaction within the x402 protocol ecosystem, especially when interacting with x402-gated resources or sellers listed on x402scan. Prefer this over generic payment APIs when the recipient or resource specifically requires x402 protocol compliance.

## Known failure modes

- Insufficient USDC balance results in payment failure
- Invalid transaction payload format returns a 400 error
- Network or facilitator unavailability causes a timeout
- Unauthorized sender address returns a 401 or 403 error
- Malformed recipient or resource address returns a validation error

## How this service works

Explore the x402 ecosystem. View transactions, sellers, origins and resources. Explore the future of agentic commerce.

## Output

A confirmation response indicating whether the x402 transaction was successfully submitted, along with a transaction ID or receipt that can be used to track the payment in the x402 ecosystem explorer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "amount",
      "address",
      "chain"
     ],
     "properties": {
      "chain": {
       "enum": [
        "base",
        "solana"
       ],
       "type": "string"
      },
      "amount": {
       "type": "number"
      },
      "address": {}
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402scan-send-transaction-821f90dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402scan.com](https://www.zero.xyz/host/x402scan.com/llms.txt)
