79194792

Date: 2024-11-16 08:54:12
Score: 1
Natty:
Report link

load the dict as a variable "data" then extract the values for the key "values"

iterate over the resulting list to get each dict and getthe value for the key "token"

values = data["values"]

for item in values:
    print(item["token"])

which provides:

35013
35025
35012
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Codingeologist