GET
Get tag details

Get method to get tag's information. Tags are pool and wallets tags that can be saved in address editor or directly from the worker's config. You can get all tags of a certain type or all tags of the user.

https://api.minerstat.com/v2/tag

Parameters

Parameter
Type
Description
user
int
Customer's ID. If user is undefined, the main account will be checked. Customer ID can be obtained via v2/customer GET API call.
type
string
Tag's type: pools wallets

Example call

{"type": "pools"}

Example response

{
 "data": {
  "pools": {
   "POOL:ETH": {
    "address": "eu1.ethermine.org:4444"
   },
   "POOL:ETC": {
    "address": "eu1-etc.ethermine.org:4444"
   },
  }
 },
 "message": "Results found"
}