Skip to main content
POST
/
accounts
/
{account_id}
/
wire
Create Wire Transfer
curl --request POST \
  --url https://api.meow.com/v1/accounts/{account_id}/wire \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "amount": 500000000.5,
  "counterparty_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "idempotency_key": "<string>",
  "email": "jsmith@example.com",
  "instructions": "<string>",
  "purpose": "<string>",
  "internal_note": "<string>"
}
'
{
  "id": "<string>",
  "status": "pending",
  "amount": "<string>",
  "instructions": "<string>",
  "counterparty_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_time": 123,
  "transfer_type": "book"
}

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: 1 <= x <= 1000000000
counterparty_id
string<uuid>
required
idempotency_key
string
required
Required string length: 1 - 50
email
string<email> | null

Email address to notify when the operation completes

instructions
string | null
Required string length: 1 - 140
purpose
string | null
Required string length: 1 - 64
internal_note
string | null
Required string length: 5 - 255

Response

Successful Response

id
string
required
status
enum<string>
required
Available options:
pending,
canceled,
processing,
error,
sent,
returned,
void
amount
string
required
Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
instructions
string | null
required
counterparty_id
string<uuid>
required
created_time
integer
required
transfer_type
enum<string>
required
Available options:
book,
usdc,
usdt,
pyusd,
cash,
usdg,
ach,
wire