# Txlist – Normal Transactions for Address

> Txlist – Normal Transactions for 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-13).

Fetches the list of normal (non-internal, non-token) transactions for a given wallet address on any EVM-compatible chain, with pagination and block range filtering.

## Facts

- Endpoint: POST https://stablecrypto.dev/api/etherscan/account/txlist
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/txlist-normal-transactions-for-address-db14c7de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LQK6uk6nRGOpOU2NnvPig

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 txlist-normal-transactions-for-address-db14c7de -d '<json body>'
```

Example prompt: Pull the last 25 normal transactions for wallet address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum mainnet (chain ID 1), sorted newest first.

## When to prefer this

Use this endpoint when you need a straightforward list of normal (ETH-value) transactions for a specific wallet address on any EVM chain, especially when you need pagination, block-range filtering, or sort-order control. Prefer this over token-transfer or internal-transaction endpoints when you want standard ETH sends/receives. Best for auditing wallet activity, building transaction history views, or feeding downstream analytics.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported chain ID returns an error
- Page or offset values out of range may return empty results
- Start block greater than end block returns no transactions
- Rate limiting or upstream Etherscan API unavailability causes request failure
- Network-specific data may be unavailable for lesser-supported EVM chains

## How this service works

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

## Output

Returns a paginated list of normal transactions for the specified wallet address, including fields like transaction hash, block number, timestamp, from/to addresses, ETH value, gas used, and transaction status — sourced via the Etherscan API for the given EVM chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "page": {
   "type": "number"
  },
  "sort": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "offset": {
   "type": "number",
   "description": "Number of results per page"
  },
  "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"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/txlist-normal-transactions-for-address-db14c7de/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)
