Verified Network
  • What is the Verified Network
  • How to use it
  • Reference
    • Verified SDK
      • Using the SDK
      • Wallet and Contracts
      • Know your Customer
        • Using the KYC plugin
      • Delegated permissions
      • Investment products
        • Product lifecycle
        • Example of a Product
      • Security tokens
        • Issuing functions
      • Liquidity pools
        • Buy and Sell Orders workflow
        • Buy and Sell Order Complete workflow example
      • Secondary issues
      • Primary issues
        • Primary offer function
      • Margin traded issues
        • Offering collateral
      • Adding money to wallet
        • Paying in supported tokens
      • Issuing cash tokens
        • Issuing and Exchange functions
      • Making payments
        • Transferring cash tokens
      • Withdrawals
        • Redeeming cash tokens
      • Custody of Assets
        • Custody functions
      • Staking to invest
        • Liquidity functions
        • Market maker functions
      • Staking to borrow
        • Bond issuing function
      • Lending
        • Bond purchase function
      • Repayments
        • Bond redemption function
      • Claiming collateral
        • Defaults and Unsold bonds
      • Returns on Investment
        • Manager and Platform returns
    • Verified REST API
      • Market data
        • Get all assets
        • Get Tradable Asset Pairs
        • Get Ticker Information
        • Get Orderbook
      • Order data
        • Get Account Balance
        • Get Trade Balance
        • Get Open Orders
        • Get Closed Orders
        • Query Orders Info
        • Query Trades Info
        • Get Trades History
      • Order Management
        • Add Order
        • Edit Order
        • Cancel Order
    • Verified Subgraphs
    • Verified Applications
      • Doing KYC
        • Creating wallet
        • Using the Verified Dapp
        • Doing KYC
      • Primary issues
        • Creating a new issue
        • Subscribing to issue
        • Closing issue
      • Secondary trading
        • Market orders
        • Limit orders
        • Edit, Cancel, Settle orders
      • Margin trading
        • Post Margin collateral
        • Swaps
        • Edit, Cancel, Settle orders
      • Portfolio
        • Account statement
        • Corporate actions
        • Underwriting liquidity
Powered by GitBook
On this page
  • API endpoint
  • Request Samples
  1. Reference
  2. Verified REST API
  3. Market data

Get Tradable Asset Pairs

Tradeable asset pair endpoint to fetch pool details as per security-currency pair

API endpoint

/api/assetPair/?pair={securitySymbol}-{currencySymbol}

Request Samples

 GET https://verified-api.azurewebsites.net/api/assetPair?pair=HMREFG-USDC

Response Samples

Content type

application/json

{
  "poolId": "0xa7442cccb1632fd417eb0d27b62d6307346bdb8100000000000000000000083b",
  "poolAddress": "0xa7442cccb1632fd417eb0d27b62d6307346bdb81",
  "poolType": "PrimaryIssue",
  "swapFee": "0.01",
  "minimumPrice": "0.222222222222222222",
  "securityOffered": "900",
  "cutoffTime": "1686989166",
  "offeringDocs": "QmeowXcrtz7588e1xsjfBP6onrvcSqKF3V34i3gzPo7QBM",
  "minimumOrderSize": "1",
  "currencyToken": {
    "address": "0x07865c6e87b9f70255377e024ace6630c1eaa37f",
    "symbol": "USDC",
    "balance": "0",
    "decimals": 6
  },
  "securityToken": {
    "address": "0xee606de96bf2c37a7440afa3f93f7a6bff371534",
    "symbol": "HMREFG",
    "balance": "0",
    "decimals": 18
  }
}

PreviousGet all assetsNextGet Ticker Information

Last updated 1 year ago