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>'
{
  "id": "<string>",
  "amount": "<string>",
  "counterparty_name": "<string>",
  "counterparty_account_number": "<string>",
  "counterparty_routing_number": "<string>",
  "counterparty_bank_name": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "instructions": "<string>",
  "counterparty_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "error": "<string>",
  "imad": "<string>",
  "purpose": "<string>",
  "internal_note": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Meow API key, sent in the x-api-key header for authentication.

Headers

x-entity-id
string<uuid>

Optional entity_id to scope requests to a specific entity.

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

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,
pending_approval,
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.