Market gRPC API
Overview
The Market service provides market data: prices, tickers, and charts for the Mini App and trading flows.
Internal address: market (hostname in swarm); port as configured (e.g. 7081).
Responsibilities
- Asset prices and tickers (crypto, IRT pairs).
- Historical or aggregated data for charts (if implemented).
- Used by Gateway under
/api/v1/market/*(or equivalent).
Flow
flowchart LR
A[Gateway] -->|/api/v1/market/*| B[Market]
B --> C[Internal cache / RPC]
C --> B
B --> A
REST Exposure
Market is consumed by clients via the Gateway. See Gateway REST and Swagger for exact paths (e.g. /api/v1/market/tickers, /api/v1/market/prices).