Transaction History
GET
/api/v1/transactions
const url = 'https://api.parasta.io/api/v1/transactions';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 https://api.parasta.io/api/v1/transactions \ --header 'Authorization: Bearer <token>'Get transaction history with optional month filter.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
Example
{ "status": "ok", "data": { "transactions": [ { "type": "charge", "amount": "+500,000 KRW", "date": "2026-03-25" }, { "type": "transfer", "amount": "-100 USDT", "date": "2026-03-24" } ] }}