I have a JSON object and was wondering how I can iterate over the object to pull values for \"id\".
{ \"totalSize\": 5, \"done\": true, \"records\": [ {
You can iterate through the records key as a list and then access the Id key of each sub-dict:
records
Id
for i in s["records"]: print(i['Id'])