GET
Get Transactions
Fetch a paginated list of all local transactions for a specific account.
GET/v2/transactions
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
account_number | string | YES | The account number to fetch history for. |
limit | integer | NO | Number of records to return (default 20). |
page | integer | NO | Page 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"} ] }