Skip to main content
GET
/
accounts
/
{account_id}
/
wires
/
{wire_transfer_id}
Get Wire Transfer
curl --request GET \
  --url https://api.meow.com/v1/accounts/{account_id}/wires/{wire_transfer_id} \
  --header 'x-api-key: <api-key>'
{
  "amount": "1000.00",
  "counterparty_account_number": "123456789",
  "counterparty_bank_name": "Chase Bank",
  "counterparty_id": "cp_789",
  "counterparty_name": "ABC Corp",
  "counterparty_routing_number": "021000021",
  "created_at": "2024-01-01T12:00:00Z",
  "id": "wire_123456",
  "imad": "2024010100000001",
  "instructions": "Wire transfer for invoice payment",
  "internal_note": "Payment for invoice 123",
  "purpose": "invoice_payment",
  "status": "sent",
  "updated_at": "2024-01-01T12:00:00Z"
}

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.

wire_transfer_id
string
required

The transaction group ID for the wire transfer

Response

Successful Response

Response model for wire transfer details

id
string
required

The unique identifier for the wire transfer

amount
string
required

The amount of the transfer

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
status
enum<string>
required

The current status of the transfer

Available options:
pending,
canceled,
processing,
error,
sent,
returned,
void
counterparty_name
string
required

The name of the counterparty

counterparty_account_number
string
required

The account number of the counterparty

counterparty_routing_number
string
required

The routing number of the counterparty

counterparty_bank_name
string
required

The name of the counterparty's bank

created_at
string<date-time>
required

The time the transfer was created

updated_at
string<date-time>
required

The time the transfer was last updated

instructions
string | null

Instructions or OBI (Originator to Beneficiary Information)

counterparty_id
string<uuid> | null

The unique identifier for the counterparty

error
string | null

Error message if the transfer failed

imad
string | null

IMAD (Input Message Accountability Data) for the wire

purpose
string | null

The purpose of the wire transfer

internal_note
string | null

An internal note associated with the transfer