curl --request GET \
--url https://api.example.com/api/version{
"version": "<string>",
"latest_version": "<string>",
"update_available": true,
"changes": {},
"error": "<string>"
}Check the current API version and availability of updates
curl --request GET \
--url https://api.example.com/api/version{
"version": "<string>",
"latest_version": "<string>",
"update_available": true,
"changes": {},
"error": "<string>"
}GET /api/version
curl http://localhost:1234/api/version
{
"version": "1.4.8",
"latest_version": "1.5.0",
"update_available": true,
"changes": null
}
{
"version": "1.4.8",
"latest_version": "1.4.8",
"update_available": false,
"changes": "- Fixed bug in series extractor\n- Improved error handling\n- Added new network filters"
}
{
"error": "No se pudo obtener la versión remota: Connection timeout",
"version": "1.4.8"
}
major.minor.patchupdate_available: true only when the remote version is strictly greaterhttps://raw.githubusercontent.com/UnfairAdventage/Web-Scrapping/refs/heads/main/CurrentVersionhttps://raw.githubusercontent.com/UnfairAdventage/Web-Scrapping/refs/heads/main/Changes