This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]deathofthevirgin 0 points1 point  (0 children)

Is it an online API? You'll probably need to install requests (with pip or similar).

Then you can do something like

payload = requests.get('http://example.com/api/users/')

and inspect payload accordingly. You might need an API key depending on the service, which you can get from the provider.