# Blockscout Address Internal Transactions CSV Export

> Blockscout Address Internal Transactions CSV Export is a paid API for AI agents from api.blockscout.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-11).

Export internal transactions for a specific blockchain address as a CSV file, filtered by date and type, across multiple EVM-compatible chains

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/addresses/%7Baddress_hash_param%7D/internal-transactions/csv
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-11
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-address-internal-transactions-csv-export-88852883
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VNtzWjonXHYa2VQ_voqYk

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 blockscout-address-internal-transactions-csv-export-88852883
```

Example prompt: Can you export all internal transactions for Ethereum address 0xAb5801a7D398351b8bE11C439e05C5B3259aeC9B on chain ID 1 as a CSV, filtered from January 1 2024 to June 30 2024?

## When to prefer this

Use this endpoint when you need bulk internal transaction data for a specific address in CSV format for offline analysis, accounting, or tax reporting. Prefer this over paginated JSON endpoints when you need complete historical data across a date range. Ideal for auditing smart contract internal calls or generating financial reports across any Blockscout-supported EVM chain.

## Known failure modes

- Invalid chain_id returns 404 or empty response
- Invalid address_hash_param returns 400 bad request
- No transactions in the specified date range returns empty CSV
- Malformed date filter values may return 422 unprocessable entity
- Rate limiting or payment failure returns 402 or 429
- Very large address histories may time out

## How this service works

Explore crypto activities with Blockscout's multichain search. Find transactions, addresses, tokens, and dapps across top blockchain networks — your go-to explorer for cross-chain blockchain data

## Output

A CSV file containing internal transactions for the specified address on the given chain, with columns for transaction hash, block number, timestamp, from/to addresses, value transferred, gas used, and other relevant fields. Results can be filtered by date range and transaction type.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "chain_id": {
       "type": "string"
      },
      "address_hash_param": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "to_period": {
       "type": "string"
      },
      "filter_type": {
       "type": "string"
      },
      "from_period": {
       "type": "string"
      },
      "filter_value": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-address-internal-transactions-csv-export-88852883/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockscout.com](https://www.zero.xyz/host/api.blockscout.com/llms.txt)
