# Get Wire

Endpoint: GET /api/v1/wires/{wire_id}/
Version: Version: d28453d9
Security: CodeBearer

## Path parameters:

  - `wire_id` (string, required)

## Response 200 fields (application/json):

  - `id` (string, required)

  - `status` (string, required)
    The status of the wire transfer: `PENDING`, `SUCCESS`, or `REJECTED`.
    Enum: "PENDING", "SUCCESS", "REJECTED"

  - `amount` (object, required)

  - `amount.value` (integer, required)
    USD values are always in cents.

  - `amount.currency` (string, required)

  - `amount.formatted` (string)

  - `pocket_id` (string, required)
    Also known as jiko_account_id

  - `time_created` (string, required)

  - `direction` (string)

  - `object_type` (string, required)

  - `counterparty_id` (any)
    The ID of the counterparty for this wire transfer.

  - `wire_tracking_info` (any)
    Identifiers used to track the wire through the payment network. Only present on outgoing wires that have been sent.

  - `wire_tracking_info.uetr` (string, required)
    Unique End-to-end Transaction Reference (UETR), a UUID identifying the wire across the payment network.

  - `wire_tracking_info.imad` (any)
    Input Message Accountability Data (IMAD), the Fedwire identifier for the wire. Null when not available.

  - `client_verifiers` (array)
    Identifiers (emails) of the verifiers/approvers of this wire.

## Response 422 fields (application/json):

  - `detail` (array)

  - `detail.loc` (array, required)

  - `detail.msg` (string, required)

  - `detail.type` (string, required)

  - `detail.input` (any)

  - `detail.ctx` (object)

