# Token1155tx – ERC-1155 Token Transfer History by Address

> Token1155tx – ERC-1155 Token Transfer History by Address is a paid API for AI agents from stablecrypto.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves ERC-1155 multi-token transfer history for a given wallet address on any EVM-compatible chain, with optional filtering by contract, block range, and pagination.

## Facts

- Endpoint: POST https://stablecrypto.dev/api/etherscan/account/token1155tx
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token1155tx-erc-1155-token-transfer-history-by-address-ba5249d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7RjwXYXTScyoGuX2ZisBF

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 token1155tx-erc-1155-token-transfer-history-by-address-ba5249d8 -d '<json body>'
```

Example prompt: Pull all ERC-1155 token transfers for wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum mainnet (chain ID 1), sorted descending, page 1 with 25 results per page.

## When to prefer this

Use this endpoint when you need ERC-1155 multi-token standard transfer history for a specific wallet or contract on any EVM chain. Prefer it over generic transaction endpoints when the focus is specifically on ERC-1155 (multi-token) activity, such as gaming items, semi-fungible tokens, or batch NFT transfers, rather than ERC-20 or ERC-721.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported chain ID returns an error or no data
- Block range with no transfers returns an empty list
- Pagination offset beyond total records returns empty result
- Rate limiting or upstream Etherscan API unavailability returns a 429 or 5xx error

## How this service works

Pay-per-request access to CoinGecko, DefiLlama, Alchemy, and Etherscan APIs. No auth, no subscriptions.

## Output

A list of ERC-1155 token transfer events for the specified address, including transaction hash, block number, timestamp, token contract address, token ID, amount transferred, sender, and recipient.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number"
  },
  "sort": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "offset": {
   "type": "number"
  },
  "address": {
   "type": "string",
   "description": "Wallet address"
  },
  "chainid": {
   "type": "number",
   "description": "EVM chain ID (1=Ethereum, 137=Polygon, 8453=Base, etc.)"
  },
  "endblock": {
   "type": "number"
  },
  "startblock": {
   "type": "number"
  },
  "contractaddress": {
   "type": "string",
   "description": "Filter by ERC-1155 contract"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token1155tx-erc-1155-token-transfer-history-by-address-ba5249d8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablecrypto.dev](https://www.zero.xyz/host/stablecrypto.dev/llms.txt)
