/1.0/user/{userId} Resource

GET /1.0/user/{userId}

Get a user by userId. (deprecated) Note: This endpoint always returns a result, even if the user doesn't exist

Request Parameters
name type description
userId path the user's userId
Response Body
media type data type description
application/json user (JSON) the matching user
application/xml user (XML)

Example

Request
GET /1.0/user/{userId}
Accept: application/json

              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "userId" : "...",
  "fullname" : "...",
  "lastFm" : "...",
  "mySpace" : "...",
  "twitter" : "...",
  "flickr" : "...",
  "website" : "...",
  "about" : "...",
  "url" : "..."
}