# Crypto Wallet Transfers & Swaps Scraper (`muhammetakkurtt/crypto-wallet-transfers-swaps-scraper`) Actor

Extract enriched wallet Transfers & DEX Swaps across EVM, BTC, SOL, TON & more — entity resolution (CEX, whales), token details & precise USD values. An affordable alternative to Arkham & Nansen for on-chain investigations. Export structured data (JSON/CSV/Excel).

- **URL**: https://apify.com/muhammetakkurtt/crypto-wallet-transfers-swaps-scraper.md
- **Developed by:** [Muhammet Akkurt](https://apify.com/muhammetakkurtt) (community)
- **Categories:** Developer tools, Other
- **Stats:** 29 total users, 4 monthly users, 100.0% runs succeeded, 2 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $1.00 / 1,000 wallet data scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Crypto Wallet Transfers & Swaps Scraper

The **Crypto Wallet Transfers & Swaps Scraper** is a high-performance Apify actor designed to extract comprehensive blockchain transaction data. A fast, affordable alternative to Arkham Intelligence and Nansen, it automatically collects **Transfers** (Incoming/Outgoing) and **Token Swaps** data across 16+ blockchain networks.

Whether you're tracking whale movements, analyzing DeFi trading patterns, or monitoring AML compliance, this tool provides structured, enriched data ready for export to JSON, CSV, or Excel.

---

### 🚀 Why Use This Scraper?

- **Enriched Entity Data**: Get detailed labels for sender/receiver addresses (e.g., "Binance Hot Wallet", "Vitalik Buterin", "Uniswap V3").
- **Multi-Chain Support**: Simultaneously track wallets across **EVM (Ethereum, Base, Arbitrum)**, **Bitcoin**, **Solana**, **Tron**, **TON**, **Dogecoin**, and more.
- **Advanced Filtering**: Filter transactions by Date, USD Value, Token (Symbol/Address), and Counterparty.
- **DEX Swap History**: Scrape decentralized exchange (DEX) swap history with execution prices and slippage details.
- **SEO Optimized**: Built for analysts needing reliable, structured on-chain data without manual extraction.

---

### ⚡ Key Features

- **Transfers Scraping**: Fetch full transaction history including ETH, BTC, SOL, SPL tokens, ERC-20 tokens, and NFTs.
- **Swaps Scraping**: Extract DEX swap data (e.g., Uniswap, Raydium, PancakeSwap) with precise execution details.
- **Batch Processing**: Input multiple wallet addresses to scrape in parallel.
- **Historical Data**: Retrieve historical transactions with customizable date ranges (e.g., "last 30 days" or specific dates).
- **Proxy Support**: Built-in support for Apify Proxy to ensure 100% success rate.

---

### 🌐 Supported Blockchain Networks

This scraper supports all major on-chain networks (the same coverage as Arkham Intelligence):

| Network | Type |
| :--- | :--- |
| **Bitcoin** | BTC (Legacy, SegWit, Bech32) |
| **Ethereum** | EVM |
| **Solana** | SVM |
| **Tron** | TVM |
| **Dogecoin** | UTXO |
| **TON** | TVM-based |
| **Base** | L2 EVM |
| **Arbitrum One** | L2 EVM |
| **Optimism** | L2 EVM |
| **Polygon** | Sidechain EVM |
| **Avalanche** | EVM (C-Chain) |
| **BNB Chain** | EVM |
| **Mantle** | L2 EVM |
| **Sonic** | EVM |
| **Flare** | EVM |
| **Zcash** | UTXO |

---

### 🛠 Usage & Configuration

#### Input Parameters

| Parameter | Type | Description |
| :--- | :--- | :--- |
| `base` | String | **Required**. Wallet address or entity name (e.g., `"0x123..."` or `"binance"`). |
| `dataType` | String | **Required**. `transfers` or `swaps`. Default: `transfers`. |
| `flow` | String | Filter transaction direction: `all`, `in`, `out`, or `self`. |
| `chains` | Array | Filter by specific blockchains (e.g., `["ethereum", "base"]`). |
| `usdGte` | Number | Minimum transaction value in USD. |
| `usdLte` | Number | Maximum transaction value in USD. |
| `timeGte` | Date | Start date (YYYY-MM-DD or relative like "7 days"). |
| `timeLte` | Date | End date (YYYY-MM-DD or relative like "1 month"). |
| `tokens` | Array | Filter by Token Symbol or Contract Address. |
| `counterparties` | Array | Filter by specific Counterparty Address or Entity Name. |
| `maxItems` | Integer | Max number of records to retrieve. Default: 100. |

#### Example Input Configuration

```json
{
  "base": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
  "dataType": "transfers",
  "flow": "all",
  "usdGte": 1000,
  "timeGte": "2024-01-01",
  "maxItems": 500,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  }
}
````

***

### 📊 Output Data Structure

The scraper stores results in the default Apify RequestList/Dataset.

#### 1. Transfers Data Output

Includes sender/receiver details, entity metadata, token value, and USD amount.

```json
{
  "id": "0x04867b17261c230c71aeb44203e9368d971c738b39523a497510f75150a98f70_436",
  "transactionHash": "0x04867b17261c230c71aeb44203e9368d971c738b39523a497510f75150a98f70",
  "fromAddress": {
    "address": "0xF3622742b1E446D92e45E22923Ef11C2fcD55D68",
    "chain": "base",
    "entity": {
      "name": "Clanker",
      "note": "",
      "id": "clanker",
      "type": "misc",
      "service": null,
      "addresses": null,
      "website": "https://clanker.world",
      "twitter": "https://x.com/clanker_world"
    },
    "label": {
      "name": "ClankerFeeLocker",
      "address": "0xF3622742b1E446D92e45E22923Ef11C2fcD55D68",
      "chainType": "evm"
    },
    "isUserAddress": false,
    "contract": true
  },
  "fromIsContract": true,
  "toAddress": {
    "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    "chain": "base",
    "entity": {
      "name": "Vitalik Buterin",
      "note": "",
      "id": "vitalik-buterin",
      "type": "individual",
      "service": null,
      "addresses": null,
      "twitter": "https://twitter.com/VitalikButerin",
      "crunchbase": "https://www.crunchbase.com/person/vitalik-buterin",
      "linkedin": "https://www.linkedin.com/in/vitalik-buterin-267a7450"
    },
    "label": {
      "name": "vitalik.eth",
      "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
      "chainType": "evm"
    },
    "isUserAddress": false,
    "contract": false
  },
  "toIsContract": false,
  "tokenAddress": "0x4200000000000000000000000000000000000006",
  "type": "",
  "blockTimestamp": "2026-02-18T11:49:29Z",
  "blockNumber": 42313011,
  "blockHash": "0xf49a7520f0f9303a43d6cebac9fb6e35db6eefaa28bb5b8b63a3384ecbad7981",
  "tokenName": "Wrapped Ether",
  "tokenSymbol": "WETH",
  "tokenDecimals": 18,
  "unitValue": 0.01926326844747769,
  "tokenId": "l2-standard-bridged-weth-base",
  "historicalUSD": 38.19077812591585,
  "chain": "base"
}
```

#### 2. Swaps (DEX) Output

Includes swap execution details, tokens exchanged, and relevant contract addresses.

```json
{
  "id": "0x634b780cef1d48e0a14c1f886d318e9ca8e09adf04a4cada3cad008482229fdc_57_60",
  "chain": "ethereum",
  "blockTimestamp": "2024-06-03T04:36:47Z",
  "blockNumber": 20008950,
  "blockHash": "0xb0afa759b98b45a1b54726454356d0e2dffbc5781cf0922f2a81274772ce667e",
  "contractAddress": {
      "address": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF",
      "chain": "ethereum",
      "entity": {
          "name": "0x",
          "note": "",
          "id": "0x",
          "type": "dex",
          "service": null,
          "addresses": null,
          "website": "https://0x.org",
          "twitter": "https://twitter.com/0xProject",
          "crunchbase": "https://www.crunchbase.com/organization/0x-project",
          "linkedin": "https://www.linkedin.com/company/0x"
  },
      "label": {
          "name": "Exchange Proxy",
          "address": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF",
          "chainType": "evm"
      },
      "isUserAddress": false,
      "contract": true
  },
  "sender": {
      "address": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF",
      "chain": "ethereum",
      "entity": {
          "name": "0x",
          "note": "",
          "id": "0x",
          "type": "dex",
          "service": null,
          "addresses": null,
          "website": "https://0x.org",
          "twitter": "https://twitter.com/0xProject",
          "crunchbase": "https://www.crunchbase.com/organization/0x-project",
          "linkedin": "https://www.linkedin.com/company/0x"
      },
      "label": {
          "name": "Exchange Proxy",
          "address": "0xDef1C0ded9bec7F1a1670819833240f027b25EfF",
          "chainType": "evm"
      },
      "isUserAddress": false,
      "contract": true
  },
  "receiver": {
      "address": "0x9952B62c2F9785dCc977086A55170c3B38c6E130",
      "chain": "ethereum",
      "isUserAddress": false,
      "contract": false
  },
  "unitValue0": 0,
  "unitValue1": 0,
  "historicalUSD": 0,
  "token0": "0x6D68015171EAa7af9a5a0a103664CF1e506Ff699",
  "token0Id": null,
  "token0Name": null,
  "token0Symbol": null,
  "token0Decimals": null,
  "token1": "0xD1B89856D82F978D049116eBA8b7F9Df2f342fF3",
  "token1Id": null,
  "token1Name": null,
  "token1Symbol": null,
  "token1Decimals": null,
  "valid": true,
  "contractEntityId": "uniswap"
}
```

***

### 📈 Use Cases

- **Crypto Investigation**: Track funds flow for AML/KYC compliance.
- **Whale Alert**: Monitor large holders moving significant amounts of tokens.
- **Airdrop Analysis**: Analyze Sybil clusters and airdrop distribution patterns.
- **DEX Trading Strategy**: Backtest trading strategies using historical swap data.
- **Portfolio Tracking**: Aggregate cross-chain balances and transaction history for tax reporting.

***

> **Disclaimer:** This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Arkham Intelligence, Inc. or any of its subsidiaries. All trademarks mentioned are the property of their respective owners.

# Actor input Schema

## `base` (type: `string`):

Filter by specific entity or address. For example, '0xd8da6bf26964af9d7eed9e03e53415d37aa96045' or 'binance'.

## `dataType` (type: `string`):

Choose what type of data to collect

## `maxItems` (type: `integer`):

Maximum total number of results to collect per wallet

## `flow` (type: `string`):

Filter transactions by direction. 'self' is available for self-transfers.

## `chains` (type: `array`):

Filter by specific blockchain networks. Leave empty to include all networks.

## `timeGte` (type: `string`):

Only include transactions after this date. Use YYYY-MM-DD format or relative format (e.g., '7 days', '2 weeks', '1 month')

## `timeLte` (type: `string`):

Only include transactions before this date. Use YYYY-MM-DD format or relative format (e.g., '7 days', '2 weeks', '1 month')

## `usdGte` (type: `number`):

Only include transactions with USD value greater than or equal to this amount

## `usdLte` (type: `number`):

Only include transactions with USD value less than or equal to this amount

## `tokens` (type: `array`):

Filter by specific token addresses or IDs (e.g., 'ethereum', 'usd-coin', '0x...tokenAddress')

## `fromFilter` (type: `array`):

Filter by sender addresses or entities (e.g., '0x...', 'binance', 'type:cex')

## `toFilter` (type: `array`):

Filter by receiver addresses or entities (e.g., '0x...', 'binance', 'type:cex')

## `counterparties` (type: `array`):

Only show transactions between the wallet and these counterparties

## `sortKey` (type: `string`):

Field to sort results by

## `sortDir` (type: `string`):

Sorting direction

## `proxyConfiguration` (type: `object`):

Using a proxy is recommended for faster and more reliable results

## Actor input object example

```json
{
  "base": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
  "dataType": "transfers",
  "maxItems": 100,
  "usdGte": 0,
  "sortKey": "time",
  "sortDir": "desc",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  }
}
```

# Actor output Schema

## `results` (type: `string`):

Wallet transfers and swaps data stored in the default dataset

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "base": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
};

// Run the Actor and wait for it to finish
const run = await client.actor("muhammetakkurtt/crypto-wallet-transfers-swaps-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "base": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045" }

# Run the Actor and wait for it to finish
run = client.actor("muhammetakkurtt/crypto-wallet-transfers-swaps-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "base": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
}' |
apify call muhammetakkurtt/crypto-wallet-transfers-swaps-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=muhammetakkurtt/crypto-wallet-transfers-swaps-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Crypto Wallet Transfers & Swaps Scraper",
        "description": "Extract enriched wallet Transfers & DEX Swaps across EVM, BTC, SOL, TON & more — entity resolution (CEX, whales), token details & precise USD values. An affordable alternative to Arkham & Nansen for on-chain investigations. Export structured data (JSON/CSV/Excel).",
        "version": "0.0",
        "x-build-id": "hZaT7Gc1O1Wjtx166"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/muhammetakkurtt~crypto-wallet-transfers-swaps-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-muhammetakkurtt-crypto-wallet-transfers-swaps-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/muhammetakkurtt~crypto-wallet-transfers-swaps-scraper/runs": {
            "post": {
                "operationId": "runs-sync-muhammetakkurtt-crypto-wallet-transfers-swaps-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/muhammetakkurtt~crypto-wallet-transfers-swaps-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-muhammetakkurtt-crypto-wallet-transfers-swaps-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "base",
                    "dataType"
                ],
                "properties": {
                    "base": {
                        "title": "Wallet Address or Entity",
                        "type": "string",
                        "description": "Filter by specific entity or address. For example, '0xd8da6bf26964af9d7eed9e03e53415d37aa96045' or 'binance'.",
                        "default": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
                    },
                    "dataType": {
                        "title": "Data Type",
                        "enum": [
                            "transfers",
                            "swaps"
                        ],
                        "type": "string",
                        "description": "Choose what type of data to collect",
                        "default": "transfers"
                    },
                    "maxItems": {
                        "title": "Maximum Total Results",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum total number of results to collect per wallet",
                        "default": 100
                    },
                    "flow": {
                        "title": "Transaction Direction",
                        "enum": [
                            "all",
                            "in",
                            "out",
                            "self"
                        ],
                        "type": "string",
                        "description": "Filter transactions by direction. 'self' is available for self-transfers."
                    },
                    "chains": {
                        "title": "Blockchain Networks",
                        "type": "array",
                        "description": "Filter by specific blockchain networks. Leave empty to include all networks.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "bitcoin",
                                "ethereum",
                                "solana",
                                "arbitrum_one",
                                "tron",
                                "dogecoin",
                                "ton",
                                "base",
                                "optimism",
                                "sonic",
                                "mantle",
                                "avalanche",
                                "zcash",
                                "flare",
                                "polygon",
                                "bnb",
                                "linea",
                                "blast",
                                "manta"
                            ],
                            "enumTitles": [
                                "Bitcoin",
                                "Ethereum",
                                "Solana",
                                "Arbitrum One",
                                "Tron",
                                "Dogecoin",
                                "TON",
                                "Base",
                                "Optimism",
                                "Sonic",
                                "Mantle",
                                "Avalanche",
                                "Zcash",
                                "Flare",
                                "Polygon",
                                "BNB Chain",
                                "Linea",
                                "Blast",
                                "Manta"
                            ]
                        }
                    },
                    "timeGte": {
                        "title": "Start Date",
                        "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$|^(\\d+)\\s*(day|week|month|year)s?$",
                        "type": "string",
                        "description": "Only include transactions after this date. Use YYYY-MM-DD format or relative format (e.g., '7 days', '2 weeks', '1 month')"
                    },
                    "timeLte": {
                        "title": "End Date",
                        "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$|^(\\d+)\\s*(day|week|month|year)s?$",
                        "type": "string",
                        "description": "Only include transactions before this date. Use YYYY-MM-DD format or relative format (e.g., '7 days', '2 weeks', '1 month')"
                    },
                    "usdGte": {
                        "title": "Minimum USD Value",
                        "minimum": 0,
                        "type": "number",
                        "description": "Only include transactions with USD value greater than or equal to this amount",
                        "default": 0
                    },
                    "usdLte": {
                        "title": "Maximum USD Value",
                        "type": "number",
                        "description": "Only include transactions with USD value less than or equal to this amount"
                    },
                    "tokens": {
                        "title": "Token Filter",
                        "type": "array",
                        "description": "Filter by specific token addresses or IDs (e.g., 'ethereum', 'usd-coin', '0x...tokenAddress')",
                        "items": {
                            "type": "string"
                        }
                    },
                    "fromFilter": {
                        "title": "From (Sender) Filter",
                        "type": "array",
                        "description": "Filter by sender addresses or entities (e.g., '0x...', 'binance', 'type:cex')",
                        "items": {
                            "type": "string"
                        }
                    },
                    "toFilter": {
                        "title": "To (Receiver) Filter",
                        "type": "array",
                        "description": "Filter by receiver addresses or entities (e.g., '0x...', 'binance', 'type:cex')",
                        "items": {
                            "type": "string"
                        }
                    },
                    "counterparties": {
                        "title": "Counterparties",
                        "type": "array",
                        "description": "Only show transactions between the wallet and these counterparties",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sortKey": {
                        "title": "Sort By",
                        "enum": [
                            "time",
                            "usd"
                        ],
                        "type": "string",
                        "description": "Field to sort results by",
                        "default": "time"
                    },
                    "sortDir": {
                        "title": "Sort Direction",
                        "enum": [
                            "desc",
                            "asc"
                        ],
                        "type": "string",
                        "description": "Sorting direction",
                        "default": "desc"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Using a proxy is recommended for faster and more reliable results",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": []
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
