Skip to main content
POST
/
accounts
/
{account_id}
/
book
Create Book Transfer
curl --request POST \
  --url https://api.meow.com/v1/accounts/{account_id}/book \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "amount": 500000000.005,
  "to_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "idempotency_key": "<string>",
  "description": "<string>"
}
'
{
  "id": "<string>",
  "amount": "<string>",
  "description": "<string>",
  "created_time": 123,
  "transfer_type": "book",
  "to_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "to_account_name": "<string>",
  "to_account_account_number_masked": "<string>",
  "to_entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "to_entity_name": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Headers

x-entity-id
string<uuid>

Optional entity ID for scoped access to entity-specific data

Path Parameters

account_id
string
required

The ID of the account.

Body

application/json
amount
required
Required range: 0.01 <= x <= 1000000000
to_account_id
string<uuid>
required
idempotency_key
string
required
Required string length: 1 - 50
description
string | null
Required string length: 1 - 50

Response

Successful Response

id
string
required
amount
string
required
Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
description
string | null
required
created_time
integer
required
transfer_type
enum<string>
required
Available options:
book,
usdc,
usdt,
pyusd,
cash,
usdg,
ach,
wire
to_account_id
string<uuid>
required
to_account_name
string
required
to_account_account_number_masked
string
required
to_entity_id
string<uuid> | null
to_entity_name
string | null