Skip to main content
POST
/
api
/
v4
/
mining
/
workers
/
names
Worker Names
curl --request POST \
  --url https://whitebit.com/api/v4/mining/workers/names \
  --header 'Content-Type: application/json' \
  --header 'X-TXC-APIKEY: <api-key>' \
  --data '
{
  "account": "my_miner_01"
}
'
{
  "data": {
    "workers": [
      "worker_001",
      "worker_002",
      "worker_003"
    ]
  }
}

Authorizations

X-TXC-APIKEY
string
header
required

API key authentication using signed requests

Body

application/json
account
string
required

Mining pool account name

Maximum string length: 255
Example:

"my_miner_01"

Response

Successful response

data
object