This guide explains how to move funds with the Meow API. It covers:Documentation Index
Fetch the complete documentation index at: https://developer.meow.com/llms.txt
Use this file to discover all available pages before exploring further.
- Internal book transfers between bank accounts
- USDC transfers to cryptocurrency addresses
Prerequisites
- A Meow account with enabled bank accounts
- API key permissions:
- Book transfers:
accounts:readandtransfers:book:write - USDC transfers:
accounts:read,accounts:payment-networks, andtransfers:usdc:write
- Book transfers:
- A cryptocurrency contact for USDC transfers (see Contact Management Guide)
Authentication Overview
The headers you send depend on the type of API key:- Entity API keys scope all requests to a single entity. No
x-entity-idheader is required and you can only move funds between accounts that belong to that entity. - Global API keys can access multiple entities, but every request must include an
x-entity-idheader that identifies the source entity for the request. UseGET /v1/api-keys/accessible-entitiesto discover which entities you can access. When booking transfers, the destination account can belong to any other entity you have access to, as long as the accounts remain compatible.
Regardless of the key type, book transfers can only be created between accounts that share the same
bankProductType.Book Transfers
Book transfers move funds internally between two accounts you control. The source account is chosen by the path parameter, and the destination is provided in the request body.Workflow with Entity API Keys
1. List accounts to find eligible source and destination accounts:accountId and bankProductType. You must choose a destination account with the same bankProductType as the source.
2. Create the book transfer:
{source_account_id} and to_account_id with the account IDs you gathered. The idempotency_key must be unique per transfer attempt.
Example response:
Workflow with Global API Keys
1. Discover accessible entities:bankProductType as potential destination accounts. Repeat this call for each entity you have access to so you can identify compatible cross-entity pairs.
3. Create the book transfer using the source entity header:
x-entity-id value must match the source account’s entity. As long as you have access, the destination account can belong to a different entity that shares the same bankProductType.
Book Transfer Tips
- Pick a fresh
idempotency_keyfor each attempt so retries do not create duplicate transfers. - Verify both accounts are active, denominated in the same currency, and share a
bankProductTypeeven when they belong to different entities. - Transfers fail if the destination account’s
bankProductTypediffers from the source. - API-based transfers are blocked when Security Policy Spend controls are enabled for the entity; adjust the policy or rely on the dashboard instead.
USDC Transfers
USDC transfers send funds from a checking account to a cryptocurrency contact.Step 1: List Accounts
Step 2: Verify USDC Support
"type": "USDC" and "transferOut": true to confirm the account can originate USDC transfers on the listed blockchains.
Step 3: Create the USDC Transaction
Transaction Status
Possible statuses after submission:| Status | Description |
|---|---|
pending | Awaiting processing |
processing | In progress |
sent | Successfully transmitted to the blockchain |
error | Encountered an issue |
canceled | Canceled by the user or system |
void | Reversed before settlement |
Checking Transfer Status
After initiating a transfer, use the corresponding GET endpoint with the transfer ID returned from the create call to check its current status.ACH Transfers
Use theid from the create ACH response (e.g. ach_...) or the transaction group ID (e.g. withdrawal_ach_...) from a transaction listing:
Wire Transfers
Use the transaction group ID for the wire transfer:USDC Transactions
Use theid from the create USDC response:
These GET endpoints return details for both incoming and outgoing transfers. For example, you can retrieve details of an incoming ACH deposit using the same endpoint used to check the status of an outgoing ACH transfer you initiated.
Best Practices
- Verify recipients: Confirm cryptocurrency addresses and contact static memos before initiating transfers.
- Use meaningful references: Populate
description(book transfers) orinternal_note(USDC transfers) with reconciliation-friendly values. - Start small: Send a nominal amount when onboarding a new recipient.
- Protect secrets: Keep API keys and transaction data out of unsecured channels.
- Monitor statuses: Follow up with support if a transfer remains in
error.