Skip to main content
POST
/
api
/
wallets
/
request
Request wallet
curl --request POST \
  --url https://api.sandbox.bitwage.com/api/wallets/request \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --data '
{
  "company_id": "<string>",
  "currency": "<string>"
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://developer.bitwage.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Include your access token as: Authorization: Basic <ACCESS_TOKEN>

Headers

Idempotency-Key
string
required

Unique key for idempotent write requests.

Body

application/json
company_id
string
required

Company ID that the wallet should be requested for.

currency
string
required

Wallet currency, for example USD or EUR.

Response

200 - application/json

Wallet request created or already exists.

status
enum<string>
Available options:
pending,
in_progress,
completed,
rejected