tipAddress
Returns whether pubkey is currently accepted as a Lightspeed tip destination.
valid: trueandis_static: false→ dynamic address with a knownexpires_at.valid: trueandis_static: true→ permanent static address;expires_atisnull.valid: false→ not accepted right now (never issued, expired, or unknown).
Authorizations
AuthorizationstringOptional
Pass Authorization: <api-key> on each request.
Path parameters
pubkeystringRequiredExample:
Base58 Solana pubkey to check.
7xKq3vLcBqmYh4pMcNJXt5wLqDcTxaSPvXFqZjZzYtQKPattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$Responses
200
Address status.
application/json
addressstringRequired
Echoed back from the path.
validbooleanRequired
Whether this address is currently accepted as a Lightspeed tip destination.
is_staticbooleanOptional
Only present when valid is true. true for a permanent operator-configured address, false for a dynamic address.
expires_atinteger · int64 · nullableOptional
Absolute Unix-seconds expiry for dynamic addresses. null for static addresses. Only present when valid is true.
400
Malformed pubkey.
application/json
get/lightspeed/tipaddress/{pubkey}
curl -X GET https://basic.swqos.solanavibestation.com/lightspeed/tipaddress/7xKq3...{
"address": "7xKq3...",
"valid": true,
"is_static": false,
"expires_at": 1755821400
}Last updated