Generate API key
To generate an API key, click on the Create API Key button on your Dashboard and assign a name to your key. This will enable you to enjoy enhanced rate limits.
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);
});