---
title: "Search Address Details"
method: GET
path: "/v2/addresses"
tags: ["Address Information"]
---

# Search Address Details

`GET /v2/addresses`

Returns a list of addresses that match the specified search term.

## Query parameters

- `networks` string[]
- `status` string[]
- `cursor` string
- `size` number

## Response `200`

List of addresses that match the specified search term.

- AddressIndexResponseDto
  - `items` AddressDto[], required
    - `id` string, required — Record id
    - `address` string, required — Address
    - `network` string, required — Blockchain network identifier (e.g. solana, stellar)
    - `type` 'account' | 'validator' | 'contract' | 'module' | 'multisig', required
    - `status` string[], required
    - `label` string, required
    - `entity` string, required
    - `blocked_by` EntityDto[], required
      - `id` string, required
      - `name` string, required
      - `icon_url` string
    - `tags` string[], required
    - `balances` BalanceDto[], required
      - `amount` string, required
      - `denom` string, required
    - `last_active_at` string, required
  - `meta` CursorMetaDto, required
    - `next_cursor` string, nullable — Opaque string cursor pointing to the next page of results. null if there is no next page.
    - `previous_cursor` string, nullable — Opaque string cursor pointing to the previous page of results. null if there is no previous page.
    - `first_page_cursor` string — Opaque string cursor pointing to the very first page in the entire dataset with respect to the current filter.
    - `last_page_cursor` string, nullable — Opaque string cursor pointing to the very last page in the entire dataset with respect to the current filter.
    - `total_count` number, nullable — Total number of results.
    - `page_number` number — Current page number.

---

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