Static Deposits History

Retrieve a paginated list of all deposits on static wallets within the current project. Supports filtering by wallet address, deposit status, coin, network, and date range.

Static Deposit History

POST https://api-processing.crypto-chief.com/v1/static-deposit/history

Headers

Name
Value

Content-Type

application/json

Signature

Signed request body

Merchant

Merchant ID

Body

Name
Type
Required
Description

address

string

false

Filter by static wallet address.

status

string

false

Filter by deposit status: in_mempool, confirm_check, paid, dropped, reorged.

coin

false

Filter by coin symbol (e.g. BNB, USDT, ETH).

network

false

Filter by network (e.g. BSC_MAINNET, ETH_MAINNET).

date_from

string

false

Start date filter (RFC 3339 format, e.g. 2026-01-01T00:00:00Z).

date_to

string

false

End date filter (RFC 3339 format, e.g. 2026-02-01T00:00:00Z).

page

number

false

Page number (default: 1).

page_size

number

false

Items per page (default: 20, max: 100).

All fields are optional. An empty body {} returns the most recent deposits across all static wallets with default pagination.

Response 200

Response Fields

Each item in the items array has the same structure as the Static Deposit Info response.

The meta object contains pagination details:

Field
Type
Description

page

number

Current page number.

page_size

number

Number of items per page.

total

number

Total number of matching deposits.

total_pages

number

Total number of pages.

Filter Examples

All paid deposits on a specific wallet:

All USDT deposits in January 2026:

All deposits on BSC network, page 2:

Last updated