TIPTIP
API Reference

Resolve tag

GET
/v1/resolve/{tag}

Looks up a tag's payment details: the Redis cache first, then the Postgres mirror, then the Solana chain as a last-resort fallback if the mirror is missing a tag the chain actually has. A blocked tag (moderation status, not deleted) answers the same 404 as a tag that was never registered; the API never reveals that a blocked row exists.

Path Parameters

tag*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/resolve/string"
{  "tag": "@daniel",  "wallet": "8L2Z3nSXbwoFhK9x9BEs6b1qhF6xEcNJ7T4NqmiWaeuf",  "displayName": "Daniel",  "avatar": "https://cdn.tagwise.me/avatars/daniel.png",  "verified": false,  "merchant": false,  "preferredToken": "USDC",  "paymentLink": "https://tagwise.me/@daniel",  "links": {    "profile": "https://tagwise.me/@daniel",    "qr": "https://tagwise.me/@daniel/qr"  }}