Ondo
Query Ondo Finance's tokenized real-world-asset markets — prices, markets, on-chain addresses, trading limits, and attestations
ondo) exposes Ondo Finance's Global Markets (GM) REST API as workflow steps — dual-market pricing for 400+ tokenized assets, market reference data, dividend data, on-chain contract addresses, trading/session limits, market & asset status, ticker/volume data, and signed attestation creation. Every call is authenticated with a Bearer token resolved from a vault credential.
Quick Start
- Add an Ondo node to your workflow
- Set
resourcetoassetsandoperationtogetPrice - Enter a
symbol(e.g.AAPLon) - Set
credentialIDto a vault credential holding your Ondo API key - Run the workflow — the node returns the asset's dual-market price (token + underlying)
resource, operation, credentialID — plus a small set of
operation-specific fields. Learn the pattern once on Input & Output
and every operation below follows it.
Pages in This Guide
Configuration
API base URL, credentials, and dependency registration.
Asset Pricing
getAllPrices, getPrice, getAllEnhancedPrices, getOHLC — dual-market prices and candles.
Asset Markets & Dividends
getAllMarkets, getMarket, getLatestDividend, getSharesMultiplier.
Asset Addresses & Metadata
getAllAddresses, getAddresses, getAllMetadata — on-chain and provider cross-refs.
Attestation Operations
createAttestation, createAttestationQuote — signed, priced, time-limited quotes.
Chain Operations
getBalances, getTokenInfo — on-chain balances and token metadata.
Limit Operations
getTradingLimits, getSessionLimits — pre-flight checks and 5-session caps.
Status Operations
getMarketStatus, getAssetStatus — regular + 24/7 offhours state.
Ticker Operations
getAllTickers — the only source of 24h volume data.
Input & Output
The shared config-key pattern and how errors surface.
Examples
Worked workflow patterns using this node.
Troubleshooting
Common errors and how to fix them.
Core Concepts
Global Markets (GM) Assets
Ondo's Global Markets product tokenizes real-world assets (equities, ETFs) as on-chain tokens
(e.g. AAPLon tracks Apple stock). Nearly every pricing and market operation returns
dual-market data: the token's own price alongside the underlying stock's price.
Resources
Operations are grouped by resource, matching Ondo's own API boundaries:
- assets — pricing, market reference data, dividends, contract addresses, metadata, stock-split history (11 operations)
- attestations — signed/soft-quote pricing for a prospective mint or redeem (2 operations)
- chains — on-chain balance and token metadata lookups (2 operations)
- limits — pre-flight trading limits and per-session caps (2 operations)
- status — market and per-asset trading status (2 operations)
- tickers — ticker pairs with 24h volume, the only source of volume data (1 operation)
Authentication
Every operation authenticates with a Bearer token resolved from the node's credentialID
(a vault reference) — see Configuration.
Operation Summary
| Resource | Operation | Guide Page |
|---|---|---|
assets | getAllPrices, getPrice, getAllEnhancedPrices, getOHLC | Asset Pricing |
assets | getAllMarkets, getMarket, getLatestDividend, getSharesMultiplier | Asset Markets & Dividends |
assets | getAllAddresses, getAddresses, getAllMetadata | Asset Addresses & Metadata |
attestations | createAttestation, createAttestationQuote | Attestation Operations |
chains | getBalances, getTokenInfo | Chain Operations |
limits | getTradingLimits, getSessionLimits | Limit Operations |
status | getMarketStatus, getAssetStatus | Status Operations |
tickers | getAllTickers | Ticker Operations |