Changelog
All notable changes to the CryptaChain API are documented here. Format follows keepachangelog.com.
[Unreleased] - 2026-05-16
Changed
OpenAPI specification — operation descriptions
- Every one of the API's 341 handler methods now ships with a
descriptionon its@Operationannotation in addition to the existingsummary. The description is a 2-3 sentence note grounded in the method body and immediate service-layer behaviour, covering what the operation does, what it returns, and which preconditions or side effects matter to callers. - The generated OpenAPI spec at
https://api.cryptachain.com/v3/api-docsnow exposes those descriptions on everyoperationId. Tools that consume the spec (Postman/Insomnia import, codegen, AI agents that index the API) will start surfacing the longer prose alongside the short summary. - Spectral linting in CI was upgraded:
operation-summaryandoperation-descriptionare now both enforced aserror, preventing future controllers from shipping with placeholder or missing docs. - Path / query parameters across the admin and billing surfaces also gained
@Parameter(description=…)annotations where the meaning wasn't obvious from the name (e.g.stateCodeon the US-nexus endpoints,entityTypeon the audit log endpoint). - No request/response shapes changed — this is a pure documentation update.
[1.0.0] - 2026-Q2
Added
Core API
- Initial public API release at
https://api.cryptachain.com - 60+ supported blockchain networks (EVM + non-EVM)
- Wallet transfer history with pagination and filtering
- Token balance queries (native, ERC-20, NFT)
- Low-level blockchain data (blocks, transactions, traces, logs)
Compliance Screening
- Sanctions screening (OFAC SDN, EU Consolidated, UN Security Council, UK HMT, OpenSanctions)
- Threat intelligence database (darknet markets, mixers, ransomware, scams)
- Entity attribution database (exchange identification, VASP labeling)
- Fast screening mode (~20ms synchronous) and Full mode (async heuristics)
- Risk scores (0-100) with severity levels (LOW/MEDIUM/HIGH/CRITICAL)
Pricing
- Fair market value via VWAP methodology aggregated across multiple centralized spot markets
- Historical price data back to 2011
- 36 fiat currencies (31 ECB + 5 USD-pegged)
- FX daily rates and monthly averages (IAS 21 compliant)
- 1-minute precision pricing for timestamp lookups
Developer Portal
- Self-service signup at app.cryptachain.com
- API key management (create, revoke, list)
- Usage monitoring and credit tracking
- Magic link authentication (passwordless)
Infrastructure
- Webhook delivery with HMAC-SHA256 signatures
- Rate limiting with standard headers (X-RateLimit-*)
- Credit-based billing (Free / Standard / Professional / Enterprise tiers)
- Public status page at status.cryptachain.com
- OpenAPI 3.0 specification auto-generated
- Comprehensive API documentation at docs.cryptachain.com
SDKs
- TypeScript SDK (
@cryptachain/sdk) - Python SDK (
cryptachain) - Java SDK (
com.cryptachain:sdk)