Programmatic access to the most reliable & comprehensive blockchain data in Web3.
Integrate your DappLooker SDK and get popular charts data
npm install @dapplooker/sdk
- Create an account on the DappLooker website.
- After Signup, Go to the API keys page.
- Click "Create API key".
- Give your API key a name and Click "Generate".
- Now Copy your API Key.
-
Click "API" Button
Once you have imported the SDK, you can create a DapplookerSDK instance and make API calls using the API key and chart UUID that you obtained in the previous steps.
#Example
//Javascript
const DappLookerSDK = require("@dapplooker/sdk");
const getData = async () => {
let id = "dc9b69d8-7ca1-45d4-8ad0-a17f915f3f0"; // example chart UUID
let key = "qzusb5p3q246ip246ab6g0p8ppzb7u"; // example API key that you generated
let response = await DappLookerSDK.chartAPIData(id, key);
console.log("chart api data:- ", response?.data);
};
getData();
Typescript support is also available
//Typescript
import { DappLookerSDK } from "@dapplooker/sdk";