# List Wires

Endpoint: GET /api/v1/wires/
Version: Version: 16acbe91
Security: HTTPBearer

## Query parameters:

  - `customer_id` (any)

  - `pocket_id` (any)

  - `direction` (any)

  - `cursor` (string)

  - `limit` (integer)

## Header parameters:

  - `x-jiko-idempotency` (string, required)

  - `x-jiko-signature` (string, required)

## Response 200 fields (application/json):

  - `prev_page` (any)

  - `next_page` (any)

  - `items` (array, required)

  - `items.id` (string, required)

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

  - `items.amount` (object, required)

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

  - `items.amount.currency` (string, required)

  - `items.amount.formatted` (string)

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

  - `items.time_created` (string, required)

  - `items.wire_tracking_info` (any)
    Identifiers used to track the wire through the payment network. On outgoing wires these are assigned when the wire is sent; on incoming wires they are read from the received message. Null when not available.

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

  - `items.wire_tracking_info.imad` (any)
    Input Message Accountability Data (IMAD), the Fedwire identifier for the wire. Also known as the Fed reference number; domestic (Fedwire) wires only. Null when not available.

  - `items.wire_tracking_info.instruction_identification` (any)
    Unique identification assigned by the instructing party to unambiguously identify the instruction (ISO 20022 `InstrId`).

  - `items.wire_tracking_info.end_to_end_identification` (any)
    Unique identification assigned by the initiating party to unambiguously identify the transaction (ISO 20022 `EndToEndId`). This identification is passed on, unchanged, throughout the entire end-to-end chain.

  - `items.direction` (string)

  - `items.object_type` (string, required)

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

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

  - `object_type` (string)

## 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)

