order_book
Fetch the current secondary-market order book (open bids and asks) for an Aktionariat-onboarded token. The tool first resolves the ticker to the issuer’s company id, then queries the secondary-market service.
Authentication
Section titled “Authentication”Public. No sign-in required.
Inputs
Section titled “Inputs”| Field | Type | Required | Description |
|---|---|---|---|
ticker | string | Yes | Ticker symbol of a hand-onboarded token (e.g. DAKS). |
Output
Section titled “Output”A summary with the issuer name, ticker, company id, and two arrays — bids and asks — each containing price, size, and side. The shape is the platform’s OrderBookSummary model.
Example Prompts
Section titled “Example Prompts”- “Show me the order book for DAKS.”
- “What is the best bid and ask on DAKS right now?”
- “Is there liquidity on the Aktionariat AG token?”
- “Compare the bid-ask spread for DAKS and AKT.”
Notes for Agents
Section titled “Notes for Agents”- If the user refers to the company by name (“the order book of Aktionariat”), call
list_tokensfirst to find the matchingticker, then call this tool with that ticker. - The order book is live — agents that want a stable view across multiple questions should call once and quote from the same response rather than re-fetching for each follow-up.
- Tokens not on the allowlist return a “not found” error, even if they exist on-chain.