MistTrack Docs
  • 👏Welcome to MistTrack
  • 🌟MistTrack Features
  • 📖Change Log
  • 🔗OpenAPI
    • Introduction
    • Overview
    • Quicknode Add-on Docs
  • 🎯api endpoints
    • Get API Status
    • Get Address Labels
    • Get Address Overview
    • Get Risk Score
    • Get Transactions Investigation
    • Get Address Actions
    • Get Address Profile
    • Get Address Counterparty
  • 💬support
    • Common Error Messages
    • Getting Help
Powered by GitBook
On this page
  1. api endpoints

Get Address Labels

PreviousGet API StatusNextGet Address Overview

Last updated 3 months ago

Returns a list of labels for a given address.

https://openapi.misttrack.io/v1/address_labels
   ?coin=ETH
   &address=0x8894E0a0c962CB723c1976a4421c95949bE2D4E3
   &api_key=YourApiKey

Try this endpoint in your 🔗

Query Parameters

Parameter
Type
Description

coin

string

the coin to check for address labels, all optional values can be found

address

string

the address to check for address labels

api_key

string

your api key

Sample Response

{
    "success": true,
    "msg": "",
    "data": {
        "label_list": [
	    "Binance",
	    "hot"
	],
	"label_type": "exchange"
    }
}
🎯
browser
here