😁Quick Start

spoonfeed 😇.

Note :

It is required to generate your token from the website to use the package (t's not your discord bot token from discord, it is your bot token from our main website)

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from our main website at any time.

Install the Module

The best way to interact with our API is to use one of our official module:

# Install via NPM
npm install tortoises-studio-api

Making your first request

To make your first request, send an authenticated request to the tortoise studio website using

Just to check if api is working or not.

GET https://www.tortoises.studio/api

Hello World

{
    // Response
}

Fun Fact : If you are giving too many requests you'll get rate limit for 1 hour and if you won't stop still you'll be block for a week. (Verified developers and bots bypass it)

Take a look at how you might call this method using our official module :

const tortoise = require("tortoises-studio-api");

const  = new tortoise("TOKEN-HERE", client);
//This token is not your bot token.
//You can get this token from https://www.tortoises.studio when you submit a bot.

Last updated