GET

Get Transactions

Fetch a paginated list of all local transactions for a specific account.

GET/v2/transactions

Query Parameters

ParameterTypeRequiredDescription
account_numberstringYESThe account number to fetch history for.
limitintegerNONumber of records to return (default 20).
pageintegerNOPage number to retrieve (default 1).

Example Request

cURL
curl -X GET "https://sandbox.hexcore.io/v2/transactions?account_number=1234567890&limit=10&page=1" \-H "Authorization: Bearer sk_test_your_secret_key"

Example Response

JSON (200 OK)
{"status": true,"data": [ { "id": "tx_123", "type": "CREDIT", "amount": 5000, "date": "2026-05-02T10:00:00Z"} ] }