My API for developers
Click on a category or endpoint for more information
Base URL for all the endpoints : api.antoinemcx.fr/ (JSON)
🐷 Animal images
HTTP MethodURLDescription
GET /animal/cat Displays a random image of a cat
GET /animal/dog Displays a random image of a dog
GET /animal/fox Displays a random image of a fox
Response if successful : { "status": true, "image": "THE_IMAGE_URL" }
Response in case of error : { "status": false, "message": "THE_ERROR_MESSAGE" }
🎨 Canvas : filters
HTTP MethodURLDescriptionParameters
GET /canvas/blur Apply a Gaussian blur to the image image
GET /canvas/pixelate Applies a pixel effect to the image image
GET /canvas/grayscale Displays the image in black and white image
If successful, an (image/png) image is displayed
Response in case of error : { "status": false, "message": "THE_ERROR_MESSAGE" }
🖌️ Canvas : images manipulation
HTTP MethodURLDescriptionParameters
GET /canvas/facepalm Puts the image behind a character covering his face image
If successful, an (image/png) image is displayed
Response in case of error : { "status": false, "message": "THE_ERROR_MESSAGE" }