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
- GETGet compact token data
- GETGet detailed token data
- GETGet default listed token data
- GETGet hourly, daily and weekly price change for default listed tokens
- GETGet a mapping of tokenId to 24-hours price change percentage
- GETGet daily price, volume and liquidity for all tokens
- GETGet weekly price, volume and liquidity for all tokens
- GETGet monthly price, volume and liquidity for all tokens
- GETGet yearly price, volume and liquidity for all tokens
- GETGet detailed token data by id
- GETGet historical candlestick data for token by id
- GETGet the latest candlestick data for token by id
- GETGet associated pools containing the token by id
- GETGet daily price, volume and liquidity for token by id
- GETGet weekly price, volume and liquidity for token by id
- GETGet monthly price, volume and liquidity for token by id
- GETGet yearly price, volume and liquidity for token by id
- GET
- Pools (V1)
- Pools and Positions (V2)
- SaucerSwap V1
- SaucerSwap V2
- Staking Operations
- WHBAR
- 📜 Contract Deployments
- 🛡️ Audits
- 🐞 Bug Bounty
- 👾 Github
Resources
Archive
- 🗃️ Proto-Governance
- 🦕 Old Tokenomics
- 🔁 Liquidity Migration
Tokens
Get associated pools containing the token by id
GET
/
tokens
/
associated-pools
/
{tokenId}
curl --request GET \
--url https://api.saucerswap.finance/tokens/associated-pools/{tokenId} \
--header 'x-api-key: <x-api-key>'
[
{
"id": 213,
"contractId": "0.0.1465865",
"lpToken": {
"id": "0.0.1465866",
"name": "SS-LP SAUCE - XSAUCE",
"symbol": "SAUCE - XSAUCE",
"decimals": 8,
"priceUsd": 3.7760690082569948
},
"lpTokenReserve": "23490447137584",
"tokenA": {
"id": "0.0.731861",
"name": "SAUCE",
"symbol": "SAUCE",
"decimals": 6,
"priceUsd": 0.01760954,
"description": "SaucerSwap is an open source and non-custodial AMM protocol native to Hedera.",
"website": "https://www.saucerswap.finance/",
"sentinelReport": "https://sentinel.headstarter.org/details/saucerswap",
"twitterHandle": "SaucerSwapLabs"
},
"tokenReserveA": "25185652046087",
"tokenB": {
"id": "0.0.1460200",
"name": "xSAUCE",
"symbol": "XSAUCE",
"decimals": 6,
"priceUsd": 0.01959459,
"description": "SaucerSwap is an open source and non-custodial AMM protocol native to Hedera.",
"website": "https://www.saucerswap.finance/",
"sentinelReport": "https://sentinel.headstarter.org/details/saucerswap",
"twitterHandle": "SaucerSwapLabs"
},
"tokenReserveB": "22634187941347"
}
]
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.
Path Parameters
Token id (shard.realm.num)
Example:
"0.0.731861"
Response
200 - application/json
Successful response
The response is of type object[]
.
curl --request GET \
--url https://api.saucerswap.finance/tokens/associated-pools/{tokenId} \
--header 'x-api-key: <x-api-key>'
[
{
"id": 213,
"contractId": "0.0.1465865",
"lpToken": {
"id": "0.0.1465866",
"name": "SS-LP SAUCE - XSAUCE",
"symbol": "SAUCE - XSAUCE",
"decimals": 8,
"priceUsd": 3.7760690082569948
},
"lpTokenReserve": "23490447137584",
"tokenA": {
"id": "0.0.731861",
"name": "SAUCE",
"symbol": "SAUCE",
"decimals": 6,
"priceUsd": 0.01760954,
"description": "SaucerSwap is an open source and non-custodial AMM protocol native to Hedera.",
"website": "https://www.saucerswap.finance/",
"sentinelReport": "https://sentinel.headstarter.org/details/saucerswap",
"twitterHandle": "SaucerSwapLabs"
},
"tokenReserveA": "25185652046087",
"tokenB": {
"id": "0.0.1460200",
"name": "xSAUCE",
"symbol": "XSAUCE",
"decimals": 6,
"priceUsd": 0.01959459,
"description": "SaucerSwap is an open source and non-custodial AMM protocol native to Hedera.",
"website": "https://www.saucerswap.finance/",
"sentinelReport": "https://sentinel.headstarter.org/details/saucerswap",
"twitterHandle": "SaucerSwapLabs"
},
"tokenReserveB": "22634187941347"
}
]
Assistant
Responses are generated using AI and may contain mistakes.