Illuminate
  • Illuminate - DeFi: Fixed
    • iPTs: Meta Principal Tokens
    • Lending
    • Maturity & Redemption
    • Integrations
    • YieldSpace AMM
    • Pricing & Arbitrage
  • Smart Contracts
    • Lender
      • Lender.sol
    • Redeemer
      • Redeemer.sol
    • Marketplace
      • Marketplace.sol
    • Illuminate Principal Token (ERC5095)
      • ERC5095.sol
    • Deployed Contract Addresses
    • Critical Attributes
    • Key Roles
    • Contract Relationships
    • Operation Checklists
    • Deposit Lifecycle
    • Error Codes
    • Smart Contract Integration
  • IlluminAPI
    • GET
      • Get Markets
      • Get Quotes
      • Get Best Quote
      • Get Pools
      • Get Pool
      • Get Raw Pool APYs
      • Get User Positions
      • Get Status
    • POST
  • Illuminate-js
  • Media Kit
  • Misc
  • FAQ
Powered by GitBook
On this page
  1. IlluminAPI
  2. GET

Get Raw Pool APYs

GET https://illumigate.swivel.exchange/v1/pools/:address/apys?start=s&end=e

This endpoint allows you to request a list of pool raw APYs for the specified interval.

Path Parameters

Name
Type
Description

address*

string

The pool address.

Query Parameters

Name
Type
Description

start*

string

The start of the interval in unix seconds.

end

string

The end of the interval in unix seconds.

{
    "address": "0xA7711623026dAcDfcB0471185C6E9331f50cabff",
    "start": "1673308600",
    "end": "1673395300",
    "rawApys": [
        {
            "value": "0.000032123671905683",
            "created": "1673308800"
        },
        {
            "value": "0.000002851707469372",
            "created": "1673395200"
        }
    ]
}
PreviousGet PoolNextGet User Positions

Last updated 2 years ago