Simple API for scraping https://agata.suz.cvut.cz/
$ yarn
$ yarn global add serverless
$ serverless deploy -v
See the included HTTP Archive file requests.har
List of restaurants
curl --request GET \
--url /list \
--header 'content-type: application/json'
Get menu of certain restaurant
curl --request POST \
--url /menu \
--header 'content-type: application/json' \
--data '{ "id": "[ID of restaurant]" }'
Get the user balance on ISIC
curl --request POST \
--url /balance \
--header 'content-type: application/json' \
--data '{
"username": "[Username]",
"password": "[Password]"
}'