🏷️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 names are not case-sensitive

  • Addresses can only have one tag

Tag addresses

POST /tags/tag

Tags a group of addresses with a specific tag

Headers

NameTypeDescription

api*

String

Your API key

Request Body

NameTypeDescription

tag*

String

The name of the user

addresses*

List[String]

Address hashes of the user

Example Python Input
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

NameTypeDescription

api*

String

Your API key

Request Body

NameTypeDescription

addresses*

List[String]

Address hashes of the user

Example Python Input
requests.delete("https://wardanalyticsapi.com/tags/tag",
	headers = {
		"api": "YOUR_API_KEY"
	},
	json = {
		"addresses": [0xAe45a8240147E6179ec7c9f92c5A18F9a97B3fCA],
            })

Last updated