#!/usr/bin/env python # a very simple python example how to use the API apikey = "enterYourApiKeyHere"; import urllib # we build the URL that builds the request url = "http://www.interdubs.com/api/"; url += "?"; url += "idxapi_key=" + apikey ; url += "&"; url += "idxapi_function=" + "list_logins" ; f = urllib.urlopen(url) s = f.read() f.close #please excuse my in-ability to parse results in python. Should be easy enough ... print s