🚀
accelerate labs
  • Introduction
  • GraphQL API
    • Quick Start
    • API Reference
    • Rate Limits
    • GraphQL Explorer
  • HyperEVM RPC
    • Free Public Endpoint
  • Custom RPC Services
Powered by GitBook
On this page
  • Step 1
  • Step 2
  • Step 3

Was this helpful?

  1. GraphQL API

Quick Start

Steps for getting started with Accelerate.

PreviousIntroductionNextAPI Reference

Last updated 1 month ago

Was this helpful?

Get up and running in 5 minutes. This guide will help you make your first successful API call.

Step 1

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 or find one of our engineers on the Hyperliquid Discord, we will provide you an API key.

Step 2

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"}}'

Step 3

Check out the 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.

Twitter
🧭 Explorer