Retrieve Tag Details
GET /v2/tags/:tag
Path Parameters
Field | Type | Description |
---|---|---|
tag | String | The tag to retrieve details for. |
Example
Request
cURL
curl "https://api.bmining.pro/v2/tags/satoshi" \
-X GET \
-H "Content-Type: application/json" \
--data-urlencode "api_key=YOUR_API_KEY"
Response
{
"tag": "satoshi",
"stats": {
"address_count": 2,
"token_holding_count": 1,
"txn_count": 1209,
"total_value_usd": 100000000
}
}