1

First Step

Sign-in to the Dashboard

2

Second Step

Create your API key

3

Third Step

Make your first call

import { Mobula } from "mobula-sdk";

const mobula = new Mobula("YOUR_API_KEY_HERE");

mobula
.fetchAssetMetadata({
asset: "Bitcoin",
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error("Error:", error);
});