# Gateway API
WX Network enables transfers of cryptocurrencies between Waves and other blockchains. The Gateway API provides the information required for transactions:
- Deposit – transfer cryptocurrencies to Waves account.
- Withdraw – transfer cryptocurrencies to address on external blockchain.
You can use API to retrieve:
- Movements history - paginated list of the deposits/withdrawals or one particular record.
- Platforms list - paginated list of platforms supported by WX Network deposit/withdrawal or one particular platform info.
# API Access
Use the following URL for API requests:
https://api.waves.exchange
Input and output data is transmitted in the body of the request and response in JSON format. All data is UTF-8 encoded.
The following methods require access token:
GET /v1/deposit/addresses/{currency}
GET /v1/deposit/addresses/{currency}/{platform}
GET /v1/withdraw/addresses/{currency}/{address}
GET /v1/withdraw/addresses/{currency}/{address}/{platform}
GET /v1/movements
GET /v1/movements/{id}
For more information about access token see the Access Token article.