Users

GET /api/users/show.json

Show detailed information about the specfied user.

Query Parameters:
 
  • user_id (int) – ID of the user for whom to return results for
  • screen_name (string) – handle of the user for whom to return results for

Example response: User object

GET /api/statuses/followers.json

Show followers of the specified user.

Query Parameters:
 
  • user_id (int) – ID of the user for whom to return results for
  • screen_name (string) – handle of the user for whom to return results for

Example response: User object

GET /api/statuses/friends.json

Show users the specified user follows.

Query Parameters:
 
  • user_id (int) – ID of the user for whom to return results for
  • screen_name (string) – handle of the user for whom to return results for

Example response: User object

GET /api/friends/ids.json

Show IDs of users the specified user follows.

Query Parameters:
 
  • user_id (int) – ID of the user for whom to return results for
  • screen_name (string) – handle of the user for whom to return results for

Example response:

[51450,50736,51295,50959]
GET /api/followers/ids.json

Show IDs of followers of the specified user.

Query Parameters:
 
  • user_id (int) – ID of the user for whom to return results for
  • screen_name (string) – handle of the user for whom to return results for

Example response:

[51450,50736,51295,50959]