Delivery Estimate

Endpoints
GET/v1/delivery-estimates/{{transferId}}

GET /v1/delivery-estimates/{{transferId}}?timezone=Asia/Singapore

Get the live delivery estimate for a transfer by the transfer ID.

The delivery estimate is the time at which we currently expect the transfer to arrive in the beneficiary's bank account.

This is not a guaranteed time but we are working hard to make these estimates as accurate as possible.

Request
timezonetext

Timezone ID for the formatted text. Example: UTC, Asia/Singapore. Defaults to UTC if not provided.

Response
estimatedDeliveryDatetimestamp

Estimated time when funds will arrive to recipient's bank account

formattedEstimatedDeliveryDatetext

A string to display to users for the estimated delivery date.

Example Request
curl -X GET https://api.sandbox.transferwise.tech/v1/delivery-estimates/{{transferId}}?timezone=Asia/Singapore \
-H 'Authorization: Bearer <your api token>'
Example Response
{
"estimatedDeliveryDate" : "2018-01-10T12:15:00.000+0000",
"formattedEstimatedDeliveryDate" : "in seconds"
}