- Add get request for images by tags
- Add an option for amount of images from /latest
Get a random cat from the database
{
"title": "string",
"description": "string",
"tags": [
"string"
],
"image": "url",
}
Return the latest 30 uploaded images
{
{
"title": "string",
"description": "string",
"tags": [
"string"
],
"image": "url",
},
}
Upload an image to the server, example under /example/upload.js
Tags should be in json
{
"headers": {
"title": "string",
"description": "string",
"tags": ["string"],
},
"files": {
"image": "image-data",
}
}