🏷️Address Tagging
Group your platform's addresses into tags
Address Tagging Introduction
You can assign a tag to an address and use the tag for multiple use cases, including:
Filtering by tag in your web app's risk feed
Assigning rules to a specific tag
Comparing behaviours of individual addresses to others with their tag
🪄 Spell Index
Inspect the function name to learn more about how to use each spell!
Tag addresses
POST
/tags/tag
Tags a group of addresses with a specific tag
Headers
Name
Type
Description
api*
String
Your API key
Request Body
Name
Type
Description
tag*
String
The name of the user
addresses*
List[String]
Address hashes of the user
requests.post("https://wardanalyticsapi.com/tags/tag",
headers = {
"api": "YOUR_API_KEY"
},
json = {
"addresses": [0xAe45a8240147E6179ec7c9f92c5A18F9a97B3fCA],
"tag": "Deposit Address"
})
Untag addresses
DELETE
/tags/tag
Untags a group of addresses
Headers
Name
Type
Description
api*
String
Your API key
Request Body
Name
Type
Description
addresses*
List[String]
Address hashes of the user
requests.delete("https://wardanalyticsapi.com/tags/tag",
headers = {
"api": "YOUR_API_KEY"
},
json = {
"addresses": [0xAe45a8240147E6179ec7c9f92c5A18F9a97B3fCA],
})
Last updated