shlink/docs/swagger/swagger.json

59 lines
1.4 KiB
JSON
Raw Normal View History

{
2018-02-03 11:53:40 +03:00
"openapi": "3.0.0",
"info": {
"title": "Shlink",
"description": "Shlink, the self-hosted URL shortener",
2017-07-08 13:55:33 +03:00
"version": "1.0"
},
2018-02-03 11:53:40 +03:00
"servers": [
{
2018-02-03 12:09:42 +03:00
"url": "{schema}://{server}/rest",
2018-02-03 11:53:40 +03:00
"variables": {
"schema": {
"default": "https",
2018-02-03 12:06:04 +03:00
"enum": ["https", "http"]
2018-02-03 11:53:40 +03:00
},
2018-02-03 12:06:04 +03:00
"server": {
2018-02-03 12:09:42 +03:00
"default": ""
2018-02-03 11:53:40 +03:00
}
}
}
2016-10-23 01:02:13 +03:00
],
2018-02-03 11:53:40 +03:00
"components": {
"securitySchemes": {
"Bearer": {
"description": "The JWT identifying a previously logged API key",
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
}
},
"paths": {
"/v1/authenticate": {
2016-10-23 01:02:13 +03:00
"$ref": "paths/v1_authenticate.json"
},
2017-07-08 13:55:33 +03:00
"/v1/short-codes": {
2016-10-23 01:02:13 +03:00
"$ref": "paths/v1_short-codes.json"
},
"/v1/short-codes/{shortCode}": {
2016-10-23 01:02:13 +03:00
"$ref": "paths/v1_short-codes_{shortCode}.json"
},
"/v1/short-codes/{shortCode}/tags": {
2016-10-23 01:02:13 +03:00
"$ref": "paths/v1_short-codes_{shortCode}_tags.json"
2017-07-08 13:55:33 +03:00
},
"/v1/tags": {
"$ref": "paths/v1_tags.json"
},
"/v1/short-codes/{shortCode}/visits": {
"$ref": "paths/v1_short-codes_{shortCode}_visits.json"
}
}
}