---
title: "Get Address Transactions Data"
method: POST
path: "/api/v1/profiler/address/transactions"
tags: ["Profiler"]
---

# Get Address Transactions Data

`POST /api/v1/profiler/address/transactions`

Retrieve recent blockchain transactions for an address including token transfers, native currency movements, and contract interactions.

## Request body

- ProfilerAddressTransactionsRequest
  - `address` string, required — Address to get transactions for
  - `chain` 'all' | 'arbitrum' | 'avalanche' | 'base' | 'bitcoin' | 'bnb' | 'ethereum' | 'injective' | 'iotaevm' | 'linea' | 'mantle' | 'mantra' | 'monad' | 'near' | 'optimism' | 'plasma' | 'polygon' | 'robinhood' | 'sei' | 'solana' | 'sonic' | 'starknet' | 'sui' | 'ton' | 'tron', required — Chains supported in profiler transactions analysis.
  - `date` DateRange, required — Date range model matching the API schema.
    - `from` string — Start date in ISO 8601 format (e.g., 2025-01-01T00:00:00Z or 2025-01-01)
    - `to` string — End date in ISO 8601 format (e.g., 2025-01-31T23:59:59Z or 2025-01-31)
  - `hide_spam_token` boolean — Removes suspicious tokens from the transaction list
  - `filters` ProfilerAddressTransactionsFilters — Filters for profiler address transactions endpoint. These filters control which transactions are included in the wallet transaction history.
    - `token_symbol` union — Token symbol filter
      - string
      - string[]
    - `token_address` union — Token address filter
      - string
      - string[]
    - `counterparty_name` union — Counterparty name filter
      - string
      - string[]
    - `counterparty_address` string — Counterparty address filter
    - `volume_usd` NumericRangeFilter — Filter for numeric values (floats) with optional min/max bounds. Use for prices, volumes, ratios, and other decimal values. - Values between -10.5 and 100.75
      - `min` number — Minimum value (inclusive)
      - `max` number — Maximum value (inclusive)
    - `method` string — Transaction method filter
    - `source_type` string — Transaction source type filter
  - `pagination` ProfilerPaginationRequest — Pagination parameters for profiler endpoints with performance constraints.
    - `page` integer — Page number (1-based)
    - `per_page` integer — Number of records per page (max 100 for performance)
  - `order_by` SortOrderProfilerAddressTransactionsSortField[] — Custom sort order to override the endpoint's default ordering
    - `field` 'block_timestamp', required — Enum for sortable fields in smart money inflows.
    - `direction` 'ASC' | 'DESC', required — Enum for sort directions.

## Response `200`

Address transaction data

- ProfilerAddressTransactionsResponse — Response model for profiler address transactions endpoint. Contains the filtered transaction data with metadata.
  - `pagination` PaginationInfo, required — Pagination information for API responses.
    - `page` integer — Current page number
    - `per_page` integer — Number of records per page
    - `is_last_page` boolean — Whether this is the last page
  - `data` ProfilerTransaction[], required — List of transaction records
    - `chain` string, required — Blockchain chain
    - `method` string, required — Transaction method (sent/received)
    - `tokens_sent` ProfilerTokenInfo[] — Tokens sent in the transaction
      - `token_symbol` string, required — Token symbol
      - `token_amount` number, required — Token amount
      - `price_usd` number — Token price in USD
      - `value_usd` number — Token value in USD
      - `token_address` string, required — Token contract address
      - `chain` string, required — Blockchain chain
      - `from_address` string, required — Source address
      - `to_address` string, required — Destination address
      - `from_address_label` string — Source address label
      - `to_address_label` string — Destination address label
    - `tokens_received` ProfilerTokenInfo[] — Tokens received in the transaction
      - `token_symbol` string, required — Token symbol
      - `token_amount` number, required — Token amount
      - `price_usd` number — Token price in USD
      - `value_usd` number — Token value in USD
      - `token_address` string, required — Token contract address
      - `chain` string, required — Blockchain chain
      - `from_address` string, required — Source address
      - `to_address` string, required — Destination address
      - `from_address_label` string — Source address label
      - `to_address_label` string — Destination address label
    - `volume_usd` number — Transaction volume in USD
    - `block_timestamp` string, required — Block timestamp in ISO format
    - `transaction_hash` string, required — Transaction hash in hex format
    - `source_type` string, required — Transaction source type

## Other responses

- `400` — Bad Request - Invalid request parameters or malformed request
- `401` — Authentication error - No API key found in request
- `402` — Payment Required - This endpoint supports pay-per-request via x402 and MPP. x402 responses advertise payment options in `Payment-Required`; MPP responses advertise a fresh `WWW-Authenticate: Payment ...` challenge. Successful MPP responses may include `Payment-Receipt`.
- `403` — Forbidden - User does not have required subscription tier or has exceeded credit limit
- `404` — Not Found - The requested resource was not found
- `422` — Validation error - Invalid request parameters
- `429` — Too Many Requests - Rate limit exceeded
- `500` — Internal Server Error - An unexpected error occurred

---

[API](https://skmtc.net/nansen/apis/nansen-api.md) · [All operations](https://skmtc.net/nansen/apis/nansen-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nansen/nansen-api/revisions/02a4d2e7d827/schema)
