Skip to content

Transaction History

GET
/api/v1/transactions
curl --request GET \
--url https://api.parasta.io/api/v1/transactions \
--header 'Authorization: Bearer <token>'

Get transaction history with optional month filter.

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"
}
]
}
}