---
title: "Get all payments by network"
method: POST
path: "/v1/network/{network}/payments"
tags: ["Network Information"]
---

# Get all payments by network

`POST /v1/network/{network}/payments`

Returns a list of payments for the specified network. Supports both traditional pagination and scroll API for large datasets.

## Path parameters

- `network` string, required

## Query parameters

- `page` string
- `pageSize` string
- `useScroll` boolean
- `scrollBatchSize` number
- `hasMore` boolean
- `addressParams` AddressParamDTO[]
  - `key` string, required — Key for the address parameter
  - `value` string, required — Value for the address parameter
- `direction` 'incoming' | 'outgoing'
- `sort` 'asc' | 'desc'
- `groupBy` 'address' | 'entity'
- `startTime` string
- `endTime` string
- `sortBy` 'ti' | 'usd'
- `msgTypes` string[]
- `senderSymbols` string

## Request body

- ScrollIdDTO
  - `scrollId` string — Scroll ID for pagination (only when useScroll=true)

## Response `200`

List of payments for the specified network.

- NetworkPaymentsResponseDTO
  - `scrollId` string — Scroll ID for pagination (only when useScroll=true)
  - `hasMore` boolean — Whether there are more results available (only when useScroll=true)
  - `payments` object[], required — Array of payment objects
  - `count` number — Total count of payments (only in initial request or traditional pagination)

---

[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)
