The result set for the users API does not return the URL for the user's Gravatar.
For reference: http://api.stackoverflow.com/0.8/help/method?method=users
The result set for the users API does not return the URL for the user's Gravatar.
For reference: http://api.stackoverflow.com/0.8/help/method?method=users
The gravatar url can be calculated from the email hash.
string gravatarUrl = "http://www.gravatar.com/avatar/" + emailHash + "?d=identicon&r=PG";
More gravatar info.