Endpoints
El proyecto cuenta con una API privada y publica con el fin de aumentar su rango de acciones y utilidades
Última actualización
¿Te fue útil?
El proyecto cuenta con una API privada y publica con el fin de aumentar su rango de acciones y utilidades
Última actualización
¿Te fue útil?
Retrieve user data from the API using the provided JWT token.
/auth/{id}
ID of the user to retrieve.
userId123
JWT token for authentication.
Register a new user in the API and generate a JWT token.
/auth/register
user@example.com
secure-password
John Doe
123456789
Update the status of a specific order by its ID.
/devs/orders/{id}
ID of the order to edit.
cld8h89qw0000pmp59ts0b89d
New status of the order.
approved
pending
, approved
, rejected
Update the enabled status of a specific crypto bot by its token.
/devs/cryptobots/{token}
Token of the crypto bot to edit.
some-unique-token
New enabled status of the bot.
true
/devs-tools/tasks
/devs-tools/bot/reload
discord
Retrieve the code content stored in the source bin using a unique ID.
/home/sources/{id}
The unique ID of the code content
5f7b7b7b7b7b7b7b7b7b7b7b
Add code to the source bin and get a unique ID to view the code later.
/home/sources
The code content to be added to the source bin.
console.log('Hello World')
The language of the code content.
javascript
The title of the code content.
Hello World