Tokens
Certain resources within the Partner API require a token id to be suppiled. This endpoint returns an array of token ids for a given wallet address.
Authorizations
Path parameters
wallet_addressstringRequired
the wallet address
Responses
200
Returns the array of tokens successfully.
application/json
get
GET /partner-api/wallets/{wallet_address}/tokens HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Accept: */*
200
Returns the array of tokens successfully.
{
"tokens": [
{
"tokens": {
"token_id": "text",
"image": "text",
"traits": [
{
"name": "text",
"value": "text"
}
],
"tier_metric_value": 1,
"current_tier": {
"id": "text",
"order": 1,
"tier_metric_minimum_threshold": "text",
"display_name": "text",
"marketing_benefit_text": "text",
"primary_color": "text"
}
}
}
]
}