# Phantom API – Soneium Transaction History

> Phantom API – Soneium Transaction History is a paid API for AI agents from phantom-api-omega.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves paginated transaction history for addresses on the Soneium blockchain network, with filtering by block range, category, and address.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/soneium/tx/history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/phantom-api-soneium-transaction-history-fab4e5b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sS6Is7KkX4iz2JGa8j22d

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 phantom-api-soneium-transaction-history-fab4e5b0 -d '<json body>'
```

Example prompt: Pull the last 25 transactions sent from 0xAbC123... on Soneium in descending order, including metadata, and exclude any zero-value transfers.

## When to prefer this

Use this endpoint when you need historical transaction data specifically on the Soneium network and want fine-grained filtering by address, block range, category, and sort order. Prefer it over general-purpose blockchain explorers when you need programmatic, paginated access with metadata in a pay-per-call model without API key setup.

## Known failure modes

- Invalid or unrecognized address format returns an error
- Invalid block range (fromBlock > toBlock) causes a bad request
- Unsupported category filter values return no results or error
- Missing required address fields may return an empty or error response
- Network timeout if Soneium node is slow or unavailable
- Payment failure via x402 if USDC balance is insufficient

## How this service works

Lightning-fast access to blockchain data, smart contract insights, and Web3 infrastructure across 57+ networks. Pay-per-call via x402.

## Output

A list of transaction records for the specified address(es) on the Soneium network, including transfer type, block number, from/to addresses, value, and optional metadata. Results are paginated with a pageKey for continuation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "order": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "pageKey": {
   "type": "string"
  },
  "toBlock": {
   "type": "string"
  },
  "category": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "maxCount": {
   "type": "number"
  },
  "fromBlock": {
   "type": "string"
  },
  "toAddress": {
   "type": "string"
  },
  "fromAddress": {
   "type": "string"
  },
  "withMetadata": {
   "type": "boolean"
  },
  "excludeZeroValue": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-soneium-transaction-history-fab4e5b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phantom-api-omega.vercel.app](https://www.zero.xyz/host/phantom-api-omega.vercel.app/llms.txt)
