Endpoints
Encoders
Binary

Binary Encoder

Want more encoders? Join the discord to give suggestions

GET /binary

Query Requirements:
When making a request to this endpoint you must have atleast 1 of the below query parameters

Query Parameter
encode
decode

Example Response:

URL
https://api.some-random-api.com/binary?encode=...&decode=...
Response
{
  "encoded": "0110100001100101011011000110110001101111", // Will only show if encode query present
  "decoded": "hello"                                     // Will only show if decode query present 
}