Looks up GPI tracking data for a transfer identified by identifierType and identifier.
Security
ClientCredentialsToken
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
The type of identifier used to look up the transfer.
Enum:"UETR""TRANSFER_ID"
The UETR or Wise transfer ID of the transfer to look up, matching identifierType. Must be a UUID (e.g. 97ed4827-7b6f-4491-a206-42bcf859a919) when identifierType is UETR, or a positive integer (int64) (e.g. 16521632) when identifierType is TRANSFER_ID.
Example:"97ed4827-7b6f-4491-a206-42bcf859a919"
- Production Environmenthttps://api.wise.com/2026Q3/gpi-tracking
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/gpi-tracking
- Look up GPI tracking by transfer ID
- Look up GPI tracking by UETR
curl -i -X POST \
https://api.wise.com/2026Q3/gpi-tracking \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-d '{
"identifierType": "TRANSFER_ID",
"identifier": "16521632"
}'Returns matching GPI tracking transactions.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Response
{ "transactions": [ { "uetr": "97ed4827-7b6f-4491-a206-42bcf859a919", "status": "ACSP", "cancellationStatus": "CANCELLATION_REJECTED", "initiatedAt": "2023-09-18T12:05:50Z", "lastUpdatedAt": "2023-09-18T12:13:33.314Z", "events": [ … ] } ] }