Portal Community
What it does: The Ondo node (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

  1. Add an Ondo node to your workflow
  2. Set resource to assets and operation to getPrice
  3. Enter a symbol (e.g. AAPLon)
  4. Set credentialID to a vault credential holding your Ondo API key
  5. Run the workflow — the node returns the asset's dual-market price (token + underlying)
Tip: Every operation on this node shares the same three config keys — 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:

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
assetsgetAllPrices, getPrice, getAllEnhancedPrices, getOHLCAsset Pricing
assetsgetAllMarkets, getMarket, getLatestDividend, getSharesMultiplierAsset Markets & Dividends
assetsgetAllAddresses, getAddresses, getAllMetadataAsset Addresses & Metadata
attestationscreateAttestation, createAttestationQuoteAttestation Operations
chainsgetBalances, getTokenInfoChain Operations
limitsgetTradingLimits, getSessionLimitsLimit Operations
statusgetMarketStatus, getAssetStatusStatus Operations
tickersgetAllTickersTicker Operations