Address layer
/addresses/{cryptixAddress}/balance/addresses/{cryptixAddress}/utxos/addresses/{cryptixAddress}/transactions/addresses/{cryptixAddress}/full-transactions/addresses/{cryptixAddress}/transactions-count
Cryptix already provides the building blocks for automated payment handling, transaction checks, wallet-side actions and service integration.
The modules below already form the base for automated payment handling and service integration, while additional plugins such as WordPress, WooCommerce, Shopify and POS-targeted adapters remain part of the broader expansion path.
| Module | Purpose | Source / Info | Access |
|---|---|---|---|
| Cryptix REST API Server | Read and verify blockchain-related data through API endpoints. | Source Code | GitHub |
| Wallet Daemon | Automate wallet actions such as address generation, sending and daemon startup. | More Info / Source Code | Windows / Linux |
| CryptixPay Server | Gateway-style payment server for creating and tracking payment requests. | CryptixPay / Source Code | GitHub |
| Wallet Daemon TCP Trigger API | Trigger wallet-daemon actions through a TCP-oriented integration layer. | Source Code | GitHub |
The payment layer is intentionally compact: operational health, payment lookup and payment creation cover the core gateway flow.
| Endpoint | Method | Description | Required Parameters |
|---|---|---|---|
| getStats | GET | Returns gateway telemetry and operational status. | None |
| getPayment | GET | Loads payment details by payment identifier. | paymentId |
| createPayment | GET | Creates a new payment request and returns the new payment identifier. | amount, optional merchant |
The REST server is already broad enough for wallet lookups, explorer-like data checks and operational dashboards without requiring a full custom blockchain parser.
/addresses/{cryptixAddress}/balance/addresses/{cryptixAddress}/utxos/addresses/{cryptixAddress}/transactions/addresses/{cryptixAddress}/full-transactions/addresses/{cryptixAddress}/transactions-count/info/blockdag/info/coinsupply and supply breakdown/info/network, /info/cryptixd, /info/health/info/fee-estimate, /info/blockreward, /info/halving/info/hashrate, /info/hashrate/max, /info/price, /info/marketcap/blocks/{blockId} and /blocks/blocks-from-bluescore/transactions/{transactionId}/transactions/search/transactions and /transactions/massThe wallet daemon is the execution layer for many backend flows. These are the commands and runtime switches that matter most when integrating it into scripts or services.
/V, /version for version output./testnet, /simnet, /devnet for network selection./override-dag-params-file for devnet-specific DAG overrides./?, /h, /help for command help.create, new-address, show-addressesbalance, send, sweepcreate-unsigned-transaction, sign, broadcastparse, dump-unencrypted-data, get-daemon-versionstart-daemon for daemon runtime modeVersion 1.5 of the Rust developer branch of the all-in-one package exposes a beta payment layer for NFC and REST-based device handling. That makes it relevant for small point-of-sale prototypes and single-terminal environments.
Dedicated endpoints separate NFC / POS traffic from online-store style REST traffic while still allowing device-specific routing through a device identifier.
NFC / POS
/nfc-input/ (POST)
/nfc-output/{deviceId} (GET)
REST / Online Store
/rest-input/ (POST)
/rest-output/{deviceId} (GET)
deviceId model supports one or many devices in the same installation.net start SCardSvr.Supported NFC hardware mentioned in the current beta documentation includes ACR122U, Omnikey 5321/5325, Identiv SCR3310v2.0, Sony RC-S380, uFR, ACS ACR38, Gemplus GemPC and NFC-capable smartphones, with ISO 7816 as the referenced base.
Commercial tooling does not add a protocol-level surcharge. The relevant question is operational support, not hidden on-chain extraction.
Use of the modules is free. Typical Cryptix transaction fees are low and remain inside the network, where they are allocated to miners. A commonly referenced network fee is around 0.00003165 CPAY.
Windows, Linux and Android are the primary supported environments. Browser-based PWA usage remains the most neutral fallback where native packaging is not provided. macOS and iOS are not currently offered as official distribution targets.