ProZ.com global directory of translation services
The translation workplace
Ideas

GET: /follow/:uuid/counts

Get counts of how many people follow and are followed by a given user.

Parameters

Query parameters:
  • :uuid: (uuid) The UUID of the user to lookup. Use the special value me to refer to the currently authenticated user.

Example request

curl -H "Authorization: Bearer {OAUTH2_ACCESS_TOKEN}" https://api.proz.com/v2/follow/me/counts

Response

Return counts of followers and followees in the following format:

{
  "follow_counts": {
    "following": 6,
    "followers": 10
  }
}