Quick Start
Steps for getting started with Accelerate.
Last updated
Was this helpful?
Steps for getting started with Accelerate.
Last updated
Was this helpful?
Was this helpful?
Get up and running in 5 minutes. This guide will help you make your first successful API call.
Use the Free tier API at https://preview.acc8.dev/data/graphql
(rate limited to 10 requests per second). To get access to higher rate limits , please reach out to the team via Twitter or find one of our engineers on the Hyperliquid Discord, we will provide you an API key.
Replace <MY_KEY>
with your new API key. Your key must be included in the header of every request.
curl --location 'https://acc8.dev/data/graphql' \
--header 'Content-Type: application/json' \
--header 'x-api-key: MY_KEY' \
--data '{"query":"query candles_purr_1m_last60($coin: String, $interval: String) {\n candles(\n where: {coin: {_eq: $coin}, interval: {_eq: $interval}}\n order_by: {startTime: Desc}\n limit: 60\n ) {\n id\n coin\n symbol\n interval\n startTime\n endTime\n open\n high\n low\n close\n volume\n numberTrades\n }\n}","variables":{"coin":"PURR/USDC","interval":"1m"}}'
Check out the 🧠Explorer to scope out the API and run some queries right now.
NOTE: You can explore the schema without an API key using our preview endpoint.