Anthid is designed around a simple integration model: use the REST API for submissions and queries, and use the gRPC stream for live execution context as broker activity happens. This gives your application a clean split between command/query workflows and real-time updates. You can submit intents, query accounts, search ledger activity, and inspect platform records over REST, while a connected gRPC client receives immediate broker responses and execution updates.Documentation Index
Fetch the complete documentation index at: https://docs.anthid.com/llms.txt
Use this file to discover all available pages before exploring further.
REST API
Use the REST API for request/response workflows. REST is the right path for submitting intents, querying platform resources, reading ledger records, and building dashboards or internal tools that need durable platform state. REST requests and responses use JSON.gRPC streaming
Use the gRPC stream for live context and execution updates. As Anthid receives responses from the connected broker, updates are relayed to your gRPC client as soon as they are available. This gives your application immediate context around accepted orders, rejected orders, fills, and other execution events without polling.Recommended flow
Submit or query over REST
Send intents, search records, and query platform state through the REST API.