Skip to main content
POST
/
wallets
/
{account_id}
/
sends
Create Wallet Send
curl --request POST \
  --url https://api.whop.com/api/v1/wallets/{account_id}/sends \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": "<string>",
  "to": "<string>"
}
'
{
  "amount": "<string>",
  "currency": "<string>",
  "destination": {
    "account_id": "<string>",
    "address": "<string>"
  },
  "source": {
    "account_id": "<string>",
    "address": "<string>"
  },
  "tx_hash": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.whop.com/llms.txt

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

Authorizations

Authorization
string
header
required

A company API key, company scoped JWT, app API key, or user OAuth token. You must prepend your key/token with the word 'Bearer', which will look like Bearer ***************************

Path Parameters

account_id
string
required

The sending account ID.

Body

application/json
amount
string
required

USDT amount to send.

to
string
required

Recipient user ID, business account ID, ledger account ID, or email.

Response

wallet send created

amount
string
required
currency
string
required
destination
object
required
object
enum<string>
required
Available options:
send
source
object
required
tx_hash
string
required