# Get Wire Transfer Returns details about a wire transfer for the specified account by wire transfer ID. This endpoint returns details for both incoming and outgoing wire transfers, and can be used to check the status of an outgoing wire after it has been initiated. Endpoint: GET /accounts/{account_id}/wires/{wire_transfer_id} Version: 1.0.0 Security: apiKeyAuth ## Path parameters: - `account_id` (string, required) The ID of the account. - `wire_transfer_id` (string, required) The transaction group ID for the wire transfer ## Header parameters: - `x-entity-id` (string) Optional entity ID for scoped access to entity-specific data ## Response 200 fields (application/json): - `id` (string, required) The unique identifier for the wire transfer Example: "wire_123456" - `amount` (string, required) The amount of the transfer Example: "1000.00" - `status` (string, required) The current status of the transfer Enum: "pending", "canceled", "processing", "error", "sent", "returned", "void" - `instructions` (any) Instructions or OBI (Originator to Beneficiary Information) Example: "Wire transfer for invoice payment" - `counterparty_id` (any) The unique identifier for the counterparty Example: "cp_789" - `counterparty_name` (string, required) The name of the counterparty Example: "ABC Corp" - `counterparty_account_number` (string, required) The account number of the counterparty Example: "123456789" - `counterparty_routing_number` (string, required) The routing number of the counterparty Example: "021000021" - `counterparty_bank_name` (string, required) The name of the counterparty's bank Example: "Chase Bank" - `created_at` (string, required) The time the transfer was created Example: "2024-01-01T12:00:00Z" - `updated_at` (string, required) The time the transfer was last updated Example: "2024-01-01T12:00:00Z" - `error` (any) Error message if the transfer failed - `imad` (any) IMAD (Input Message Accountability Data) for the wire Example: "2024010100000001" - `purpose` (any) The purpose of the wire transfer Example: "invoice_payment" - `internal_note` (any) An internal note associated with the transfer Example: "Payment for invoice 123" ## Response 422 fields (application/json): - `detail` (array) - `detail.loc` (array, required) - `detail.msg` (string, required) - `detail.type` (string, required)