v1

latestOpenAPI 3.0.32026-07-2613529376.3 KB
Mining Pool

Create Watcher Link

Creates a new watcher link for one or more mining accounts, granting specific permissions with a configurable expiration.

<Note> The number of active watcher links per mining account is capped (configurable server-side; currently 3 by default). Exceeding the cap returns a `400` with `Limit exceeded`. </Note> <Warning> Rate limit: 1000 requests/10 sec. </Warning>
post/api/v4/mining/watcher-links/create

Request body

accountsstring[] required

Array of mining account names

namestring required

Link name (alphanumeric and underscores only)

permissionsstring[] required

Array of permissions

liveUntil'1h' | '24h' | '7d' | 'always' required

Expiration period

Example request

{
  "accounts": [
    "my_miner_01",
    "my_miner_02"
  ],
  "name": "monitoring_link",
  "permissions": [
    "dashboard",
    "workers"
  ],
  "liveUntil": "7d"
}

Response

Watcher link created successfully