LogoLogo
  • Overview
  • Getting Started
  • 🔑How do I get my API Key?
  • 📑List of All Endpoints
  • ⚙️SDK
    • Overview
    • Getting Started
  • ⛓️INTEGRATIONS
    • ⚡Blockchains
      • EVM based blockchains
        • Ethereum
        • Binance Smart Chain
        • Avalanche - C
        • Avalanche - P
        • Avalanche - X
        • Polygon
        • Cronos
        • Arbitrum
        • Fantom
        • Optimism
        • Base
        • zkSync Era
        • Mantle
      • Non-EVM based chains
        • Tron
        • Solana
        • Near
        • Algorand
        • Aptos
        • Sui
        • Starknet
        • TON
        • Cosmos Hub
        • Osmosis
        • Stacks
        • Bitcoin
        • Stellar
          • Stellar RWA
        • XRP Ledger
          • XRP Ledger RWA
    • ⚡Bridges
      • Stargate
      • Stargate V2
      • Squid Router
      • Squid Router V2
      • Allbridge Classic
      • Allbridge Core
    • ⚡DEX & DEX Aggregators
      • Uniswap V2
      • Uniswap V3
      • Uniswap X
      • Sushiswap V2
      • PancakeSwap V2
      • PancakeSwap V3
      • Aerodrome
      • Camelot V3
      • Curve V2
      • Balancer V2
      • STON.fi
      • Trader Joe
      • Orca
      • Raydium
      • SDEX
      • Cetus
      • REF Finance
      • Liquidswap
      • Sologenic
      • Alex
      • 0x (Aggregator)
      • 1inch (Aggregator)
      • Kyberswap (Aggregator)
        • Kyberswap ( Limit Order Endpoints )
      • Jupiter (Aggregator)
    • ⚡Derivatives
      • dYdX V4
    • ⚡Fungible Tokens
      • ERC20
      • WETH
    • ⚡Lending Protocols
      • Aave V2
      • Aave V3
      • Compound V2
      • Compound V3
      • Morpho
    • ⚡Yield Aggregators
      • Yearn Finance V2
      • Harvest Finance
      • Pendle
    • ⚡Liquid Staking
      • Chorus One
      • Lido V2
      • Stader
      • Benqi
      • Jito
      • EigenLayer
    • ⚡Non Fungible Tokens
      • ERC721
      • ERC1155
      • Metaplex
    • ⚡Oracles
      • ChainLink
      • WinkLink
      • Pyth Network
      • RedStone
    • ⚡Stablecoins
      • EVM
    • ⚡Synthetics
      • Synthetix
    • ⚡Supported Wallets
      • MPC Wallets
        • DFNS
        • FORDEFI
        • FIREBLOCKS
        • CIRCLE
      • HD Wallets
        • PHANTOM
        • COINBASE
        • TON Wallet
      • Wallet Connect v2
  • How To
    • Execute a Local Swap
    • Execute a Cross Chain Swap
    • Use Limit Orders
    • Lend and Borrow
    • Provision Liquidity
      • Adding Liquidity
      • Removing liquidity
    • Yield Farm
    • Use Our Transaction Decoder
    • Submit an RFQ
    • Subscribe to Events
    • Stream Data (WebSocket)
      • Stream Transaction
      • Stream Trade
      • Stream Gas
      • Stream Ticker Price
    • Source Pricing
    • Track Memecoins
    • Manage Token Approvals
  • Use Cases
    • Trade Reconciliation
    • Portfolio Management
    • Trading Features
    • On-Chain Data: DEX Liquidity Pool Forensics
    • Transaction and Pool Analysis
  • Account Abstraction
    • Overview
      • User Endpoints
      • Paymaster Endpoint
      • Bundler Endpoint
    • ⚙️SDK - Overview
  • Additional Info
    • Error Messages
    • Client-Side Security Essentials
    • Compute Unit Costs
    • API Metadata
    • Audit Certificate
    • Brand Assets
    • FAQs
    • Quicknode Marketplace
      • DEX
      • Lending Protocols
  • ID's
    • Chain IDs
    • Bridge IDs
      • Internal Chain IDs for Bridges
    • DEX IDs
    • Lending Protocol IDs
    • Yield Aggregator ID
    • Liquid Staking IDs
    • Oracle IDs
    • Stablecoin IDs
    • Derivatives IDs
    • Synthetics IDs
  • Mapping
    • Blockchains
    • DEXs
      • Uniswap V2
      • Uniswap V3
      • Sushiswap
      • PancakeSwap
      • Curve
      • Balancer
    • Lending Protocols
      • Aave
      • Compound
  • Protocol Spender
    • Spender list
Powered by GitBook
On this page
  • Supported Chains
  • Available Endpoints:
  • Oracle IDs
  • Endpoint Details
  • /getprice
  • /getsupportedtokens
  1. INTEGRATIONS
  2. Oracles

RedStone

PreviousPyth NetworkNextStablecoins

Last updated 8 months ago

Supported Chains

Available on Ethereum Mainnet, Arbitrum, Base, and zkSync.

Available Endpoints:

Click on the endpoint to jump to the section with full details

  • GET - Get the Price(in USDT) of a token for the given protocol.

  • GET - Get the list of supported tokens on Expand.network, for RedStone.

Oracle IDs

Many endpoints have a parameter where you can provide a Oracle ID.

Below is a list of Oracle IDs related to Redstone. Please see the for a complete Oracle ID list and more information.

Oracle Name
Chain
Oracle ID

Redstone

Ethereum

1300

Redstone

Arbitrum

1301

Redstone

Base

1302

Redstone

zkSync

1303

Endpoint Details

/getprice

Get the Price(in USDT) of a token for the given protocol.

GET https://api.expand.network/oracle/getprice

Query Parameters

Name
Type
Description

oracleId*

String

oracleName

String

asset*

String

Name of the token, whose price is to be fetched.

https://api.expand.network/oracle/getprice?oracleId=1300&asset=WEETH
{
    "status": 200,
    "msg": "success",
    "data": {
        "priceFeedAddress": "0xdDb6F90fFb4d3257dd666b69178e5B3c5Bf41136",
        "roundId": "3322",
        "answer": "2457.96067059",
        "startedAt": "1726230659",
        "updatedAt": "1726230659",
        "answeredInRound": "3322"
    }
}

/getsupportedtokens

Get the list of supported tokens on Expand.network, for RedStone.

GET https://api.expand.network/oracle/getsupportedtokens

Query Parameters

Name
Type
Description

oracleId*

String

oracleName

String

https://api.expand.network/oracle/getsupportedtokens?oracleId=1300
{
    "status": 200,
    "msg": "success",
    "data": {
        "WEETH": "0xdDb6F90fFb4d3257dd666b69178e5B3c5Bf41136",
        "ETHX": "0xFaBEb1474C2Ab34838081BFdDcE4132f640E7D2d",
        "XVS": "0xa2a8507DEb233ceE4F5594044C259DD0582339CC",
        "C3M": "0x6E27A25999B3C665E44D903B2139F5a4Be2B6C26",
        "EUSD": "0xb347d2e3524D0F9e2321D84A2E9b2e60CbC4A836",
        "USDE": "0xbC5FBcf58CeAEa19D523aBc76515b9AEFb5cfd58",
        "SUSDE": "0xb99D174ED06c83588Af997c8859F93E83dD4733f",
        "USD3": "0xB39339B82DdCF89d12d987d1D4Db33aFdd40B6AA",
        "DEUSD": "0x89F48f6671Ec1B1C4f6abE964EBdd21F4eb7076f"
    }
}

Refer to the page for details.

Refer to the page for details.

Refer to the page for details.

Refer to the page for details.

⛓️
⚡
Oracle ID Page
getprice
getsupportedtokens
Oracle IDs
Oracle IDs
Oracle IDs
Oracle IDs