Score Methods

/klout

This method allows you to retrieve a Klout score in XML or JSON.

For retrieving Klout scores for multiple users, you can POST a list of usernames.

GET URL:

http://api.klout.com/1/klout.xml?key=[your_api_key]&users=[usernames]

-or-

http://api.klout.com/1/klout.json?key=[your_api_key]&users=[usernames]

Where "[usernames]" is a comma-delimited string of URL escaped usernames.

POST URL:

http://api.klout.com/1/klout.xml?key=[your_api_key]

-or-

http://api.klout.com/1/klout.json?key=[your_api_key]

When posting JSON, the API looks for a JSON string in a variable named "users".

An example JSON post:


<html>
<body>
<form method="POST" action="http://api.klout.com/1/klout.json?key=abcdef">
    <input type="hidden" name="users" value='["binhtran","joefernandez"]' id="users"> 
    <p><input type="submit" value="Continue"></p>
</form>
</body>
</html>