Home
Roadmap
Contact
- ๐ Contact
Get Started
- โ FAQ
- ๐ Hedera Guide
- ๐ SaucerSwap Tutorials
Protocol
- โ๏ธ SaucerSwap V1
- ๐ SaucerSwap V2
- ๐ฅฉ Single-Sided Staking
- ๐โโ๏ธ Community Pools
Governance
Tokenomics
Developer
- ๐ฎ Developer Resources
- REST API
- Authentication
- Stats
- Farms
- Tokens
- Pools (V1)
- Pools and Positions (V2)
- SaucerSwap V1
- SaucerSwap V2
- Staking Operations
- WHBAR
- ๐ Contract Deployments
- ๐ก๏ธ Audits
- ๐ Bug Bounty
- ๐พ Github
Archive
- ๐๏ธ Proto-Governance
- ๐ฆ Old Tokenomics
- ๐ Liquidity Migration
Pools and Positions (V2)
Get detailed data for all SaucerSwap V2 pools
GET
/
v2
/
pools
/
full
Get detailed data for all SaucerSwap V2 pools
Copy
Ask AI
curl --request GET \
--url https://api.saucerswap.finance/v2/pools/full \
--header 'x-api-key: <x-api-key>'
Copy
Ask AI
[
{
"id": 1,
"contractId": "0.0.3948521",
"tokenA": {
"decimals": 6,
"icon": "/images/tokens/usdc.png",
"id": "0.0.456858",
"name": "USD Coin",
"price": "1678944894",
"priceUsd": 1.00375771,
"symbol": "USDC",
"dueDiligenceComplete": true,
"isFeeOnTransferToken": false,
"description": "USDC is a fully collateralized U.S. dollar stablecoin. USDC is the bridge between dollars and trading on cryptocurrency exchanges...",
"website": "https://www.circle.com/en/usdc-multichain/hedera",
"twitterHandle": "circle"
},
"tokenB": {
"decimals": 6,
"icon": "/images/tokens/usdc.png",
"id": "0.0.1055459",
"name": "USD Coin",
"price": "1681384187",
"priceUsd": 1.00521604,
"symbol": "USDC[hts]",
"dueDiligenceComplete": true,
"isFeeOnTransferToken": false,
"description": "USDC is a fully collateralized U.S. dollar stablecoin...",
"website": "https://www.circle.com/en/usdc-multichain/ethereum",
"twitterHandle": "circle"
},
"amountA": "6313040",
"amountB": "6313042",
"fee": 500,
"sqrtRatioX96": "79228162514992909706099547250",
"tickCurrent": 0,
"liquidity": "10878982596"
}
]
Hedera Network | Base URL |
---|---|
Mainnet | https://api.saucerswap.finance |
Testnet | https://test-api.saucerswap.finance |
Previewnet | Not supported |
Headers
API key for authentication. The demo api key provided is globally rate limited. Do not use in production.
Response
200 - application/json
Successful response
The response is of type object[]
.
Get detailed data for all SaucerSwap V2 pools
Copy
Ask AI
curl --request GET \
--url https://api.saucerswap.finance/v2/pools/full \
--header 'x-api-key: <x-api-key>'
Copy
Ask AI
[
{
"id": 1,
"contractId": "0.0.3948521",
"tokenA": {
"decimals": 6,
"icon": "/images/tokens/usdc.png",
"id": "0.0.456858",
"name": "USD Coin",
"price": "1678944894",
"priceUsd": 1.00375771,
"symbol": "USDC",
"dueDiligenceComplete": true,
"isFeeOnTransferToken": false,
"description": "USDC is a fully collateralized U.S. dollar stablecoin. USDC is the bridge between dollars and trading on cryptocurrency exchanges...",
"website": "https://www.circle.com/en/usdc-multichain/hedera",
"twitterHandle": "circle"
},
"tokenB": {
"decimals": 6,
"icon": "/images/tokens/usdc.png",
"id": "0.0.1055459",
"name": "USD Coin",
"price": "1681384187",
"priceUsd": 1.00521604,
"symbol": "USDC[hts]",
"dueDiligenceComplete": true,
"isFeeOnTransferToken": false,
"description": "USDC is a fully collateralized U.S. dollar stablecoin...",
"website": "https://www.circle.com/en/usdc-multichain/ethereum",
"twitterHandle": "circle"
},
"amountA": "6313040",
"amountB": "6313042",
"fee": 500,
"sqrtRatioX96": "79228162514992909706099547250",
"tickCurrent": 0,
"liquidity": "10878982596"
}
]
Assistant
Responses are generated using AI and may contain mistakes.