Hello everyone. I am new to smartcitizen.me. Right now I am trying to get data from my kit which is the kit 15908
Here is my Code
import json, requests, time
r = requests.get("https://api.smartcitizen.me/v0/kits/15908")
data = json.loads(r.text)
print(data)
Output:
{'id': 'record_not_found', 'message': "Couldn't find Kit with 'id'=8503", 'url': '', 'errors': ''}
Can somebody explain me how I get the data?
I also want to point out that this is the only thing i coded. I assume you have to login with your account first. But I don’t get how that should be done.