Skip to main content
POST
/
accounts
/
{account_id}
/
usdc
Create USDC Transaction (Legacy)
curl --request POST \
  --url https://api.meow.com/v1/accounts/{account_id}/usdc \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "amount": 500000000.5,
  "static_memo_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "crypto_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "internal_note": "<string>",
  "emails": [
    "jsmith@example.com"
  ]
}
'
{
  "id": "<string>",
  "status": "pending",
  "amount": "<string>",
  "created_time": 123,
  "destination_address": "<string>",
  "destination_payment_rail": "arbitrum",
  "internal_note": "<string>",
  "destination_address_nickname": "<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: 1 <= x <= 1000000000
static_memo_id
string<uuid> | null
crypto_id
string<uuid> | null
internal_note
string | null
Required string length: 5 - 255
emails
string<email>[] | null

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*$
created_time
integer
required
destination_address
string
required
destination_payment_rail
enum<string>
required
Available options:
arbitrum,
avalanche_c_chain,
base,
ethereum,
optimism,
polygon,
solana,
stellar,
tron,
ach,
ach_push,
ach_same_day,
wire
internal_note
string | null
destination_address_nickname
string | null