ZINC API
HomeSign InSupport
HomeSign InSupport
  1. Accounts
  • API Reference
  • Authentication
    • Get Access token
      GET
  • Core Resources
    • Accounts
      • Create Account
        POST
      • Get Account
        GET
      • Update Account
        POST
      • Get Account Balance
        GET
      • Submit Account For Activation
        POST
      • Get Account Transactions
        GET
      • Get Account Supported Currencies
        GET
      • Get Account Beneficiaries
        GET
    • Beneficiary
      • Add Beneficiary
      • Get Beneficiaries
      • Delete Beneficiary
    • Currency Accounts
      • Create Currency Account
      • Get Currency Account Details
    • Payouts
      • Create Payout
      • Get Payouts For Account
    • Cards
      • Simulation
        • Simulate Card Transaction
      • Create Card
      • Get Card Details
      • Update Transaction Limits
      • Update Cards Status
      • Get Card Transactions
    • Conversions
      • Create Conversion
      • Get Quote
    • Services
      • Upload File
  1. Accounts

Get Account Transactions

GET
/api/account/{id}/transactions

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required
Header Params
x-api-version
string 
optional

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-sandbox.z.inc/api/account//transactions' \
--header 'x-api-version;'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "has_more": false,
    "items": [
        {
            "id": "e03b749f-90c7-4def-a6db-92b2e824ee52",
            "batch_id": null,
            "source_id": "e03b749f-90c7-4def-a6db-92b2e824ee52",
            "funding_source_id": null,
            "source_type": "CARD_PURCHASE",
            "transaction_type": "ISSUING_AUTHORISATION_RELEASE",
            "currency": "SGD",
            "amount": 10.1,
            "client_rate": null,
            "currency_pair": null,
            "net": 10.1,
            "fee": 0,
            "estimated_settled_at": null,
            "settled_at": null,
            "description": null,
            "status": "CANCELLED",
            "created_at": "2024-07-21T08:10:03.271+00:00"
        },
        {
            "id": "e03b749f-90c7-4def-a6db-92b2e824ee52",
            "batch_id": null,
            "source_id": "e03b749f-90c7-4def-a6db-92b2e824ee52",
            "funding_source_id": null,
            "source_type": "CARD_PURCHASE",
            "transaction_type": "ISSUING_AUTHORISATION_HOLD",
            "currency": "SGD",
            "amount": -10.1,
            "client_rate": null,
            "currency_pair": "SGDSGD",
            "net": -10.1,
            "fee": 0,
            "estimated_settled_at": null,
            "settled_at": null,
            "description": null,
            "status": "PENDING",
            "created_at": "2024-07-10T07:24:25.871+00:00"
        },
        {
            "id": "ftx_Q4BwWA_NReyi8x62iXqcbg",
            "batch_id": null,
            "source_id": "43807058-0fcd-45ec-a2f3-1eb6897a9c6e",
            "funding_source_id": null,
            "source_type": "DEPOSIT",
            "transaction_type": "DEPOSIT",
            "currency": "SGD",
            "amount": 1000000,
            "client_rate": null,
            "currency_pair": null,
            "net": 1000000,
            "fee": 0,
            "estimated_settled_at": null,
            "settled_at": "2024-07-10T07:19:00.300+00:00",
            "description": "Test from Postman",
            "status": "SETTLED",
            "created_at": "2024-07-10T07:19:00.042+00:00"
        },
        {
            "id": "ftx_z9JsYG7XT3u3db9oOziMTw",
            "batch_id": null,
            "source_id": "cfd26c60-6ed7-4f7b-b775-bf683b388c4f",
            "funding_source_id": null,
            "source_type": "DEPOSIT",
            "transaction_type": "DEPOSIT",
            "currency": "SGD",
            "amount": 1000000,
            "client_rate": null,
            "currency_pair": null,
            "net": 1000000,
            "fee": 0,
            "estimated_settled_at": null,
            "settled_at": "2024-07-10T07:18:57.260+00:00",
            "description": "Test from Postman",
            "status": "SETTLED",
            "created_at": "2024-07-10T07:18:57.017+00:00"
        }
    ]
}
Modified at 2024-07-27 17:54:56
Previous
Submit Account For Activation
Next
Get Account Supported Currencies