Retrieves an incoming transfer by id. You can pull the incoming-transfer ID from the webhook payload.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
- Production Environmenthttps://api.wise.com/2026Q3/incoming-transfers/{incomingTransferId}
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/incoming-transfers/{incomingTransferId}
- ClientCredentialsToken
- UserToken
curl -i -X GET \
https://api.wise.com/2026Q3/incoming-transfers/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'GetIncomingTransfer 200 response
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Unique identifier for the incoming transfer. UUID-formatted string.
Balance ID associated with the incoming transfer. This is the balance that was credited.
Account details ID that received the incoming transfer. A balance may have multiple account details (e.g. multiple IBANs). This identifies the specific one that was credited. Omitted when the payment was received via correspondent model.
Current state of the incoming transfer. Additional states will be added in the future.
CUSTOMER_CREDIT_TRANSFER- End-user or corporate payment where at least one side (debtor or creditor) is a non-financial institution.FI_CREDIT_TRANSFER- Direct bank-to-bank settlement, liquidity movement, or cover transfer where both parties are financial institutions.
The payment scheme through which the incoming transfer was received.
End-to-end identifier assigned by the debtor for reconciliation purposes. Omitted when not provided by the debtor.
Universal End-to-End Transaction Reference. A globally unique identifier (UUID v4) assigned by the debtor agent to track the payment across the entire chain. UUID-formatted string.
Unstructured remittance information provided by the debtor. Free-text field carried through the payment rail.
Timestamp when the incoming transfer was credited to the balance.
Payment amount waterfall representing the flow of funds: instructed → interbankSettlement → credited.
Wise's effective FX rate applied to this incoming transfer (source currency → target balance currency) as a decimal number. 1 when no conversion was needed.
Charge bearer code indicating who pays the transaction fees. Omitted if not specified in the payment message.
Financial institutions that previously instructed this payment (the historical chain the payment passed through before reaching Wise). Ordered by position in the chain.
{ "id": "123e4567-e89b-12d3-a456-426614174000", "profileId": 12345678, "balanceId": "555555", "accountDetailsId": "987654", "state": "CREDITED", "creditTransferType": "CUSTOMER_CREDIT_TRANSFER", "scheme": "SWIFT", "endToEndId": "INVOICE-2026-998", "uetr": "123e4567-e89b-42d3-a456-426614174000", "unstructuredReference": "/RFB/INV-2025-001", "creditedTime": "2025-08-21T12:34:56.000Z", "debtor": { "name": "Sarah Jenkins", "address": { "streetName": "Clifton Street", "buildingNumber": "65", "townName": "London", "postCode": "EC2A 4JE", "country": "GB", "addressLines": [ … ] }, "account": { "number": "GB29NWBK60161331926819" }, "agent": { "bic": "TRWIGB2L", "nationalCode": "230801", "name": "Wise Payments Ltd" } }, "creditor": { "name": "Sarah Jenkins", "account": { "number": "BE71096123456769" }, "agent": { "bic": "TRWIBEB1", "name": "Wise" } }, "amounts": { "instructed": { "value": 1000, "currency": "USD" }, "interbankSettlement": { "value": 1000, "currency": "USD" }, "credited": { "value": 625.25, "currency": "EUR" } }, "exchangeRate": 0.6325, "chargeBearer": "SHARED", "previousInstructingAgents": [], "fees": { "wise": [ { … } ], "correspondent": [] } }