BOB Gateway

Get the maximum spendable Bitcoin amount for the given address (v3).

Behaviourally identical to v2; exists so the v3 API surface has its own `operationId` (`get_max_spendable_v3`) rather than sharing v2's, which would tag the same operation under both v2 and v3 and break generated clients.

GET
/v3/get-max-spendable/{address}
AuthorizationBearer <token>

In: header

Path Parameters

address*string

Bitcoin address to calculate the maximum spendable amount for

Response Body

application/json

application/json

curl -X GET "https://example.com/v3/get-max-spendable/string"
{  "amount": {    "address": "string",    "amount": "string",    "chain": "string"  },  "userAddress": "string"}