# Phantom API — Abstract Transaction History

> Phantom API — Abstract 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 on-chain transaction history for addresses on the Abstract blockchain network

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/abstract/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-abstract-transaction-history-256ccd3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KpTJ58K_lEu1Ghc2fQO7s

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-abstract-transaction-history-256ccd3e -d '<json body>'
```

Example prompt: Pull the last 25 transactions involving wallet 0xABC123... on the Abstract network, sorted newest first, and include metadata — skip any zero-value transfers.

## When to prefer this

Choose this endpoint when you need historical transaction records specifically on the Abstract blockchain network and want pay-per-call pricing via x402 without a subscription. It is well-suited for agents needing filtered, paginated transaction lookups with optional metadata enrichment across a defined block range.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Block range parameters out of order or exceeding chain height may return empty results
- Invalid category filter values cause request rejection
- Missing required address fields result in bad request error
- Rate limits or payment failures (x402) block the call
- pageKey from a different query context causes unexpected results

## 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

Returns a paginated list of on-chain transactions for the specified address(es) on the Abstract network, including transaction hashes, block numbers, sender/receiver addresses, values, and optionally rich metadata. A pageKey is included for fetching subsequent pages.

## 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-abstract-transaction-history-256ccd3e/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)
