API Documentation
Access Buildix data programmatically. All endpoints return JSON with CORS enabled.
Base URL
https://www.buildix.trade/api/v1GET
/api/v1/screenerAll Hyperliquid pairs with price, volume, funding, OI.
{
"count": 311,
"data": [
{
"symbol": "BTC",
"price": 68957.0,
"change24h": -2.35,
"volume24h": 1282780165,
"openInterest": 1802345000,
"funding": -0.0000132,
"fundingAnnualized": -1.45
}
],
"timestamp": 1711108800000
}GET
/api/v1/pair/{symbol}Detailed data for a single pair (e.g. /api/v1/pair/BTC).
{
"symbol": "BTC",
"price": 68957.0,
"change24h": -2.35,
"volume24h": 1282780165,
"openInterest": 1802345000,
"funding": -0.0000132,
"fundingAnnualized": -1.45,
"markPrice": 68957.0,
"oraclePrice": 68960.5,
"maxLeverage": 50,
"deepViewUrl": "https://www.buildix.trade/pair/BTC"
}GET
/api/v1/docsThis documentation as JSON (machine-readable).
Rate Limits
Free
100/day
Pro ($19/mo)
5K/day
Whale ($49/mo)
50K/day
Authentication
Currently open access with IP-based rate limits. API key authentication coming soon. Generate your key at Account Settings.
Questions? Contact hello@buildix.trade