⚙️Utils

All routes that do varied things.

Good to know: Some routes in this section will require an API Key

Flip Text

Flip the text

GET https://api.any-bot.xyz/api/v1/fliptext

All text put into this input will be flipped

Query Parameters

Headers

{
    "message": "OK",
    "text": "Hello World",
    "flipped": "dlroW olleH",
    "status": 200
}

Base64

Encode to base64

GET https://api.any-bot.xyz/api/v1/base64

The text that has been put will be coded based64

Query Parameters

Headers

{
    "message": "OK",
    "text": "Hello World",
    "base64": "SGVsbG8gV29ybGQ=",
    "status": 200
}

Decode to base64

GET https://api.any-bot.xyz/api/v1/decodebase64

The text that has been put will be decoded based64

Query Parameters

Headers

{
    "message": "OK",
    "text": "Hello World",
    "base64": "SGVsbG8gV29ybGQ=",
    "status": 200
}

Binary

Encode to binary

GET https://api.any-bot.xyz/api/v1/binary

The text that has been put will be coded binary

Query Parameters

Headers

{
    "message": "OK",
    "text": "Hello World",
    "binary": "1001000 1100101 1101100 1101100 1101111 100000 1010111 1101111 1110010 1101100 1100100",
    "status": 200
}

Decode to binary

GET https://api.any-bot.xyz/api/v1/decodebinary

The text that has been put will be decoded binary

Query Parameters

Headers

{
    "message": "OK",
    "text": "Hello World",
    "binary": "1001000 1100101 1101100 1101100 1101111 100000 1010111 1101111 1110010 1101100 1100100",
    "status": 200
}

Coin Flip

Coin Flip

GET https://api.any-bot.xyz/api/v1/coinflip

Return a random side of a coin

Headers

{
    "message": "OK",
    "result": "heads",
    "status": 200
}

Password

Create a Random Password

GET https://api.any-bot.xyz/api/v1/password

Create a strong and random password

Query Parameters

Headers

{
    "message": "OK",
    "password": "%JWN9+%Ee-",
    "length": 10,
    "status": 200
}

Upload

This route necessarily needs an API Key

POST https://api.any-bot.xyz/api/v1

Query Parameters

Headers

{
  "message": "File uploaded",
  "name": "123_test",
  "url": "https://api.any-bot.tech/img/uploads/123_test"
}

Last updated