Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.dojifunded.com/llms.txt

Use this file to discover all available pages before exploring further.

Market data endpoints are public — no X-API-Key or X-API-Secret headers needed.
BASE = https://engine.dojifunded.com/v1

Price

GET /v1/price?symbol=BTC-USD
Returns the last price, mark price, and index price for a symbol.
curl "$BASE/price?symbol=BTC-USD"
symbol
string
required
Tradable symbol. Variants like BTCUSD, BTC/USD, and btc-usd are resolved automatically.

Orderbook

GET /v1/orderbook?symbol=BTC-USD&depth=24
Aggregated order book. Default depth is 24 levels; the maximum is defined in engine config.
curl "$BASE/orderbook?symbol=BTC-USD&depth=24"
symbol
string
required
Tradable symbol.
depth
number
Number of price levels to return per side. Default: 24.

Recent trades

GET /v1/trades?symbol=BTC-USD&limit=100
Latest public trade feed for a symbol.
curl "$BASE/trades?symbol=BTC-USD&limit=100"
symbol
string
required
Tradable symbol.
limit
number
Number of trades to return. Capped per endpoint config.

Tickers

GET /v1/tickers
Full catalog of tradable symbols, grouped by asset class. Use this to discover valid values for the symbol field in order requests.
curl "$BASE/tickers"

Ticker metadata

GET /v1/ticker/metadata?ticker=BTC-USD&type=crypto
Per-symbol trading parameters.
curl "$BASE/ticker/metadata?ticker=BTC-USD&type=crypto"
ticker
string
required
Symbol to look up. Fuzzy matching accepted — BTCUSD, BTC/USD, and btc-usd all resolve.
type
string
Asset class hint: crypto, equity, etc. Helps disambiguation when the same ticker exists across classes.
Response fields
tick_size
number
Minimum price increment.
lot_size
number
Minimum quantity increment.
max_leverage
number
Maximum leverage allowed for this symbol.
funding_cadence
string
Funding interval (e.g. 8h).

Engine config

GET /v1/config
Engine-wide configuration: default book depths, supported venues, and feature flags.
curl "$BASE/config"

Symbol metrics

GET /v1/metrics?symbol=BTC-USD
Per-symbol engine metrics.
curl "$BASE/metrics?symbol=BTC-USD"
open_interest
number
Total open interest for the symbol.
recent_volume
number
Trading volume over the recent window.
last_funding_rate
number
Most recent funding rate.