Get pool wallet

GET /api/v1/mystery/pool-wallet pool:manage

Returns the active pool wallet — where bought-back card NFTs are forwarded after a buyback offer is accepted. Gated strictly by the pool:manage scope, since this controls where NFTs are sent.

Try it GET /api/v1/mystery/pool-wallet
response
401 26ms preloaded server-side with the default context
object · 3 keys
{
  "success": false,
  "message": "Invalid API key",
  "error": "API key not found or inactive"
}
curl (tracks the inputs above)
curl -X GET 'https://staging-service.rip.fun/api/v1/mystery/pool-wallet' \
  -H 'X-API-Key: rip_v1_…'

Request fields

FieldTypeRequiredDescription
chainquery stringDefaults to "base"

Response fields (data)

FieldDescription
chain / addressThe active forwarding wallet
is_active / created_atReplaced wallets are kept inactive as an audit trail

Errors

StatusCodeWhen
404pool_wallet_not_setno pool wallet configured yet — transfers are HELD until one is set
403Insufficient permissionskey lacks the pool:manage scope

See Errors for the response envelope and the full code list.