Ledgerly
Ledgerly turns a public markets terminal into a typed quote API. Pull last price, day range, and fundamentals for stocks, currencies, and crypto pairs. Ideal for agents that need grounded, current pricing.
- Auth
- None
- Latency
- ~140ms
- Volume
- 8.4M / mo
- Surfaces
- REST · MCP
Endpoints
Base URL https://corpus.bifra.dev/ledgerly
/quoteGet the latest quote for a symbol.
Parameters
symbolstring· queryrequiredTicker or pair, e.g. AAPL or BTC-USD.
Sample response
{
"symbol": "AAPL",
"price": 241.32,
"change": 1.84,
"changePercent": 0.77,
"dayRange": [238.10, 242.55],
"asOf": "2026-07-08T20:00:00Z"
}/historyReturn historical daily closes for a symbol.
Parameters
symbolstring· queryrequiredTicker or pair.
rangestring· query1w | 1m | 1y | 5y. Defaults to 1m.
Using the REST API
Call it from your own code, a script, or the terminal. Every response is typed and normalized. No authentication required.
curl "https://corpus.bifra.dev/ledgerly/quote?symbol=..."Using the MCP server
Add the server to your agent's config and it gets typed tools instead of scraping the site. Works with any MCP-compatible client.
{
"mcpServers": {
"ledgerly": {
"url": "https://corpus.bifra.dev/ledgerly/mcp"
}
}
}get_quoteReturn the latest price for a symbol.
get_historyReturn historical closes for a symbol.