Image Upload
The /image endpoint allows you to upload an image to the server.
The image should not exceed 300KiB in size. Compression should be done on the frontend to keep things simple.
Since image upload is a heavy operation, this endpoint is rate limited to 1 request per 3 seconds.
Method
POST /image
Response
{
"status": 200,
"data": {
"url": "<url-to-image>"
}
}