> For the complete documentation index, see [llms.txt](https://docs-core.allbridge.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-core.allbridge.io/sdk/guides/utilities/transfer-time.md).

# Transfer time

You can calculate the approximate transfer time using [getAverageTransferTime](https://bridge-core-sdk.web.app/classes/AllbridgeCoreSdk.html#getAverageTransferTime) method

```typescript
const transferTimeMs = sdk.getAverageTransferTime(sourceToken, destinationToken, Messenger.ALLBRIDGE);

console.log(
  "Average transfer time from %s to %s is %s",
  sourceToken.chainSymbol,
  destinationToken.chainSymbol,
  msToTime(transferTimeMs)
);
```

[Full example](https://github.com/allbridge-io/allbridge-core-js-sdk/blob/main/examples/src/examples/bridge/get-average-transfer-time.ts)
