Skip to main content
Weavr API
Incoming wire transfers

Get an incoming wire transfer

GET/incoming_wire_transfers/{id}

Returns the incoming wire transfer identified by id, including its originator, destination account, amount, and current state.

Read the incoming wire transfers overview for transfer requirements, states, and webhook events.

Request

Path parameters

Responses

200OK

Success

Headers
Body
application/json
{}
IncomingWireTransferIncomingWireTransfer · object · 14 fields
Response example
{  "id": "string",  "profileId": "10001",  "state": "PENDING",  "amount": {    "currency": "GBP",    "amount": 1250  },  "fee": {    "currency": "GBP",    "amount": 1250  },  "destinationInstrument": {    "id": "123456789",    "type": "managed_accounts"  },  "paymentNetwork": "SEPA",  "senderName": "string",  "senderIban": "string",  "senderReference": "string",  "forex": {    "originalAmount": {      "currency": "GBP",      "amount": 1250    },    "exchangeRate": {      "value": 0,      "scale": 0    },    "paddingAmount": {      "currency": "GBP",      "amount": 1250    },    "feeAmount": {      "currency": "GBP",      "amount": 1250    }  },  "isInstant": true,  "createdAt": 1786118400000,  "executedAt": 1786118401250}