List Tags
GET /v2/tags
Returns
Field | Type | Description |
---|---|---|
tag | String | The tag. |
address_count | Number | The number of addresses with the tag. |
created_at | String | The date the tag was created. |
updated_at | String | The date the tag was last updated. |
Example
Request
cURL
curl "https://api.bmining.pro/v2/tags" \
-X GET \
-H "Content-Type: application/json" \
--data-urlencode "api_key=YOUR_API_KEY"
Response
[
{
"tag": "satoshi",
"address_count": 2164,
"created_at": "2024-01-01T00:00:00.000Z",
"updated_at": "2024-01-01T00:00:00.000Z"
}
]