Find Pools

Returns all active pool up to 90 days old.

GET/pools
Authorization
Query parameters
Response

Successful operation

Body
basestring
Example: "WETH"
quotestring
Example: "USDC"
expirationstring
Example: "03NOV23"
Pattern: ^\d\d\w\w\w\d\d$
strikenumber
Example: 1700
typeenum
Example: "P"
CP
poolAddressstring
Example: "0x...4cFF2"
Request
const response = await fetch('/pools', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "base": "WETH",
    "quote": "USDC",
    "expiration": "03NOV23",
    "strike": 1700,
    "type": "P",
    "poolAddress": "0x...4cFF2"
  }
]

Last updated

Terms and Disclaimers

Privacy Policy