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
- SaucerSwap V1
- SaucerSwap V2
- Staking Operations
- WHBAR
- 📜 Contract Deployments
- 🛡️ Audits
- 🐞 Bug Bounty
- 👾 Github
Resources
Archive
- 🗃️ Proto-Governance
- 🦕 Old Tokenomics
- 🔁 Liquidity Migration
Pools and Positions (V2)
Get detailed data for all SaucerSwap V2 pools
GET
/
v2
/
pools
/
full
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[]
.
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.