# x402scan Merchant Transaction History

> x402scan Merchant Transaction History is a paid API for AI agents from x402scan-j55w7ornb-merit-systems.vercel.app, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-15).

Fetches paginated on-chain transaction records for a specific merchant address, including asset, amount, payTo, network, and payment scheme details.

## Facts

- Endpoint: GET https://x402scan-j55w7ornb-merit-systems.vercel.app/api/data/merchants/0xf7b1356cfed0eebe01d76da7ba9e9f8bf12d9d57/transactions
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402scan-j55w7ornb-merit-systems-vercel-app-a9cb90be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mLlr11LPJZ44dC6Nf-Rdn

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-j55w7ornb-merit-systems-vercel-app-a9cb90be
```

Example prompt: Pull the last 30 days of on-chain x402 transactions for merchant address 0xf7b1356cfed0eebe01d76da7ba9e9f8bf12d9d57 on Base, sorted by amount descending, and show me the first 20 results.

## When to prefer this

Use this endpoint when you need to retrieve historical payment transactions received by a specific merchant address on x402-compatible networks (Base or Solana), especially when you need filtering by chain, timeframe, or sorting by time or amount. Prefer this over wallet-level endpoints when the target is specifically a merchant recipient address in the x402 ecosystem.

## Known failure modes

- Invalid merchant address format returns an error
- Unsupported chain value returns validation error
- Page size out of range (>100 or <1) returns validation error
- Timeframe value not in allowed set (1, 7, 14, 30) may return unexpected results
- Merchant address with no transaction history returns empty results
- Network timeout or Vercel cold start may cause latency spikes

## How this service works

Fetches on-chain transaction records for a specific merchant address, returning asset, amount, payTo, network and payment scheme details.

## Output

A paginated list of on-chain transaction records for the specified merchant address, each containing asset type, payment amount, payTo address, network (Base or Solana), and x402 payment scheme details.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "page": {
       "type": "integer",
       "default": 0,
       "maximum": 9007199254740991,
       "minimum": 0,
       "description": "Page index (0-based)"
      },
      "chain": {
       "enum": [
        "base",
        "solana"
       ],
       "type": "string",
       "description": "Filter by chain"
      },
      "sort_by": {
       "enum": [
        "time",
        "amount"
       ],
       "type": "string",
       "default": "time",
       "description": "Sort field"
      },
      "page_size": {
       "type": "integer",
       "default": 10,
       "maximum": 100,
       "minimum": 1,
       "description": "Items per page (1-100, default 10)"
      },
      "timeframe": {
       "type": "number",
       "description": "Days lookback (1, 7, 14, or 30)"
      },
      "sort_order": {
       "enum": [
        "asc",
        "desc"
       ],
       "type": "string",
       "default": "desc",
       "description": "Sort direction"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402scan-j55w7ornb-merit-systems-vercel-app-a9cb90be/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402scan-j55w7ornb-merit-systems.vercel.app](https://www.zero.xyz/host/x402scan-j55w7ornb-merit-systems.vercel.app/llms.txt)
