Skip to content

Javascript-SDK

The Plutus Javascript Helper Library

The Plutus Javascript Helper Library makes it easy to interact with our APIs.

How To Install the Library from PyPi

npm install plutus

Using the Library

(async () => {
    try {
        const data = await sdk.getNycTaxiData(); // Call the method
        console.log(data); // Log the fetched data
    } catch (error) {
        console.error("Error fetching NYC taxi data:", error.message); // Handle errors
    }
})();

Endpoints

Plutus Function
sdk.getNycTaxiData

More Information, Pull Requests, Feature Suggestions and Bug Reports