---
title: "Get Mining Accounts"
method: POST
path: "/api/v4/mining/accounts"
tags: ["Mining Pool"]
---

# Get Mining Accounts

`POST /api/v4/mining/accounts`

Returns a list of mining accounts for the authenticated user. Supports filtering by account name.
Results are ordered by account creation time, newest first.

The response does not include a `total` field. Detect the last page when
`data.length < limit`.

<Warning>
Rate limit: 1000 requests/10 sec.
</Warning>

## Request body

- object
  - `name` string — Optional filter to search for a specific mining account name (exact match)
  - `request` string, required — Request signature
  - `nonce` integer, required — Unique request identifier

## Response `200`

Successful response

- object
  - `data` object[]
    - `name` string — Mining account name
    - `createdAt` integer — Account creation timestamp (Unix time)
  - `limit` integer
  - `offset` integer

## Other responses

- `400` — Validation failed

---

[API](https://skmtc.net/whitebit/apis/whitebit-private-http-api-v4.md) · [All operations](https://skmtc.net/whitebit/apis/whitebit-private-http-api-v4/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whitebit/whitebit-private-http-api-v4/versions/76c9def9942f/schema)
