{"openapi":"3.1.0","info":{"title":"api.aviutl2.jp","description":"API for AviUtl2 versions and downloads","version":"0.0.0"},"paths":{"/":{"get":{"operationId":"getIndex","description":"Landing page","responses":{"200":{"description":"Successful response","content":{"text/markdown":{"schema":{"type":"string"}}}}}}},"/versions":{"get":{"operationId":"getVersions","description":"Get AviUtl2 versions","responses":{"200":{"description":"A list of AviUtl2 versions","content":{"application/json":{"schema":{"type":"object","properties":{"versions":{"type":"array","items":{"type":"object","properties":{"version":{"type":"string"},"id":{"type":"number"},"released_at":{"type":"string"},"downloads":{"type":"object","properties":{"zip":{"type":"string","format":"uri"},"exe":{"type":"string","format":"uri"}},"required":["zip","exe"]}},"required":["version","id","released_at","downloads"]}}},"required":["versions"]}}}}}}},"/versions/latest":{"get":{"operationId":"getVersionsLatest","description":"Get latest AviUtl2 version","responses":{"302":{"description":"Redirect to latest version","content":{"text/plain":{"schema":{"type":"string"}}}},"404":{"description":"No versions available","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string"}},"required":["message"]}}}}}}},"/versions/{version}":{"get":{"operationId":"getVersionsByVersion","description":"Get AviUtl2 version by version string","responses":{"200":{"description":"AviUtl2 version","content":{"application/json":{"schema":{"type":"object","properties":{"version":{"type":"string"},"id":{"type":"number"},"released_at":{"type":"string"},"downloads":{"type":"object","properties":{"zip":{"type":"string","format":"uri"},"exe":{"type":"string","format":"uri"}},"required":["zip","exe"]}},"required":["version","id","released_at","downloads"]}}}},"302":{"description":"Redirect to version that is more specific","content":{"text/plain":{"schema":{"type":"string"}}}},"404":{"description":"Version not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string"}},"required":["message"]}}}}},"parameters":[{"schema":{"type":"string"},"in":"path","name":"version","required":true}]}},"/download":{"get":{"operationId":"getDownload","description":"Redirect to AviUtl2 download link","parameters":[{"name":"version","in":"query","required":true,"schema":{"type":"string"},"description":"Version string or 'latest'"},{"name":"type","in":"query","required":true,"schema":{"type":"string","enum":["installer","zip"]}}],"responses":{"302":{"description":"Redirect to download URL","content":{"text/plain":{"schema":{"type":"string"}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string"}},"required":["message"]}}}},"404":{"description":"Version not found","content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string"}},"required":["message"]}}}}}}}},"components":{}}