Get a specific transfer
GET
/transfers/{id}
const url = 'http://localhost:8000/api/v1/transfers/1';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8000/api/v1/transfers/1 \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
integer
ID of the transfer
Responses
Section titled “ Responses ”Successful operation
Media type application/json
object
id
ID of the transfer
integer
amount
required
Amount of the transaction
number format: float
from_wallet_id
required
Source wallet
integer
to_wallet_id
required
Destination wallet
integer
exchange_rate
The exchange rate
number format: float
user_id
required
ID of the user
integer
datetime
Date and time of the transfer
string format: date-time
Example generated
{ "id": 1, "amount": 1, "from_wallet_id": 1, "to_wallet_id": 1, "exchange_rate": 1, "user_id": 1, "datetime": "2026-04-15T12:00:00Z"}Transfer not found