Token - Liquidity (Single)
curl --request GET \
--url https://public-api.birdeye.so/defi/v3/token/exit-liquidity \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v3/token/exit-liquidity"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/v3/token/exit-liquidity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"token": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
"exit_liquidity": 6787432.938612048,
"liquidity": 10355070.125772206,
"price": {
"value": 1.1515311597782227,
"update_unix_time": 1750385475,
"update_human_time": "2025-06-20T02:11:15",
"update_in_slot": 31798064
},
"currency": "USD",
"address": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
"name": "EURC",
"symbol": "EURC",
"decimals": 6,
"extensions": {
"twitter": "https://twitter.com/circlepay",
"website": "https://www.circle.com",
"telegram": null
},
"logo_uri": "https://coin-images.coingecko.com/coins/images/26045/small/euro.png?1696525125"
},
"success": true
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}Stats & Market Data
Token - Liquidity (Single)
Provides a liquidity value based on USD, native tokens, and other high-liquidity assets to confirm on-chain pools have real liquidity prior to user trades.
GET
/
defi
/
v3
/
token
/
exit-liquidity
Token - Liquidity (Single)
curl --request GET \
--url https://public-api.birdeye.so/defi/v3/token/exit-liquidity \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/v3/token/exit-liquidity"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://public-api.birdeye.so/defi/v3/token/exit-liquidity', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"token": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
"exit_liquidity": 6787432.938612048,
"liquidity": 10355070.125772206,
"price": {
"value": 1.1515311597782227,
"update_unix_time": 1750385475,
"update_human_time": "2025-06-20T02:11:15",
"update_in_slot": 31798064
},
"currency": "USD",
"address": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
"name": "EURC",
"symbol": "EURC",
"decimals": 6,
"extensions": {
"twitter": "https://twitter.com/circlepay",
"website": "https://www.circle.com",
"telegram": null
},
"logo_uri": "https://coin-images.coingecko.com/coins/images/26045/small/euro.png?1696525125"
},
"success": true
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}- Usage Note
- Accessibility
- Chain Supported
Exit-liquidity estimate for one Base token.
- Returns liquidity values based on USD, native tokens, and other high-liquidity assets.
- Use this endpoint when you need to understand whether a token has enough practical liquidity before user actions.
- This endpoint is designed for Base token liquidity analysis.
- Standard
- Lite
- Starter
- Premium
- Business
- Enterprise
Base
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
15 CUper request.
Use Cases 💡
Use Cases 💡
- Estimate whether a Base token has enough usable liquidity before showing trade actions.
- Build low-liquidity and exit-liquidity warnings into token pages or internal risk tools.
- Combine with price and market data to evaluate whether valuation is backed by market depth.
- Trigger alerts when exit liquidity changes enough to affect user execution quality.
How to Use 🛠️
How to Use 🛠️
- Set
x-chain=base. - Provide
addressas the Base token contract address. - Use the multiple endpoint when screening many Base tokens at once.
Best Practices ✅
Best Practices ✅
- Use exit liquidity alongside token price, volume, and holder distribution instead of relying on one metric.
- Add guardrails in trading interfaces when liquidity is thin relative to intended trade size.
- Refresh liquidity checks before high-impact user actions such as swaps, alerts, or listing decisions.
Limitations ⚠️
Limitations ⚠️
- Base only.
Authorizations
API key for authentication
Headers
Base network only.
Available options:
base Query Parameters
The address of the token contract.
Was this page helpful?

