Skip to content

List Tags

GET /v2/tags

Returns

FieldTypeDescription
tagStringThe tag.
address_countNumberThe number of addresses with the tag.
created_atStringThe date the tag was created.
updated_atStringThe 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"
  }
]