For the complete documentation index, see llms.txt. This page is also available as Markdown.

tipAddress

checkTipAddress — Is this pubkey accepted as a tip destination?

get
/lightspeed/tipaddress/{pubkey}

Returns whether pubkey is currently accepted as a Lightspeed tip destination.

  • valid: true and is_static: false → dynamic address with a known expires_at.

  • valid: true and is_static: true → permanent static address; expires_at is null.

  • valid: false → not accepted right now (never issued, expired, or unknown).

Authorizations
AuthorizationstringOptional

Pass Authorization: <api-key> on each request.

Path parameters
pubkeystringRequired

Base58 Solana pubkey to check.

Example: 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.

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