mirror of
https://github.com/SrIzan10/api.git
synced 2026-06-06 00:46:48 +00:00
44 lines
955 B
JSON
44 lines
955 B
JSON
{
|
|
"swagger": "2.0",
|
|
"info": {
|
|
"title": "Sr Izan API",
|
|
"description": "Image recognition stuff for now lol",
|
|
"version": "1.0.0"
|
|
},
|
|
"host": "api.srizan.ml",
|
|
"basePath": "/",
|
|
"schemes": [
|
|
"https"
|
|
],
|
|
"paths": {
|
|
"/misc/download": {
|
|
"get": {
|
|
"summary": "Download images from a URL",
|
|
"parameters": [
|
|
{
|
|
"in": "query",
|
|
"name": "url",
|
|
"type": "string",
|
|
"required": true,
|
|
"description": "The URL (https and stuff)"
|
|
},
|
|
{
|
|
"in": "query",
|
|
"name": "type",
|
|
"type": "string",
|
|
"required": true,
|
|
"description": "The file type (png, jpg, jpeg or gif)"
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "Success"
|
|
},
|
|
"400": {
|
|
"description": "Bad Request"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |