By submitting a request to this endpoint, users can propose a swap offer, where they specify the assets they would like to exchange and the amount of units, either from the source or from the target asset.
The request triggers the creation of a swap offer that can later be accepted by the user within its validity (as defined in swap_offer_validity
& expires_at
response parameters).
The users can swap any asset that is present in their portfolio to any other supported digital asset on our platform. When swapping an asset, it is first sold as a fiat token (F-Token) before the desired asset is bought. This happens to avoid price fluctuations.
The swap offer to be created.
Success Response (New offer has been created)
Unauthorized
Forbidden
Not Allowed
Gone
Validation Errors
Too Many Requests
Internal Error
Maintenance or Service unavailable
{- "source_asset_id": 1,
- "target_asset_id": 2,
- "amount": "1.00000001",
- "amount_defined_for": "source"
}
{- "data": {
- "id": "1ed55cc7-f413-69a4-88f6-5aa1a9244d15",
- "source_asset_id": 1,
- "target_asset_id": 2,
- "source_asset_amount": "0.00000001",
- "target_asset_amount": "12.123",
- "tax_amount": "0.10",
- "net_asset_price": "1930.84694442",
- "fee_amount": "0.45",
- "fee_percentage": "2.25",
- "time": "2023-01-01T12:00:00+00:00",
- "expires_at": "2023-01-01T12:01:00+00:00",
- "swap_offer_validity": 60
}
}