Returns a list of users following the user specified by its username or id. Only one of the parameters is needed.
The response is split into several pages with a default page size of 100 items per page. To control the output use the pageSize and page parameters.
Resource URL
| Parameters | |
|---|---|
| id | The ID of the user to get Example Values: 1, 2, 3, 123 |
| username optional | The username of the user to get Example Values: pwaldhauer |
| pageSize optional | Determines the maximum count of entities to be returned on one page. Maximum of 100. Example Values: 5, 10, 100 |
| page optional | The page index (zero based) Example Values: 0, 1, 2 |
Example Request
This example shows how to get the followers of the user "pwaldhauer" (Response shortened)
GET
Params:
{
"totalCount": "579",
"pageSize": 100,
"user": {
"id": 1,
"fullname": "Philipp Waldhauer",
"username": "pwaldhauer",
"bio": "I just work. It's amazing. ",
"avatar": "https:\/\/s3-eu-west-1.amazonaws.com\/avatars.quote.fm\/8ca133b0ab796892c067a728cc0c6e83_460.png",
"twitter": "knuspermagier",
"location": "Glinde, Germany",
"url": "http:\/\/knuspermagier.de",
"created": "Thu, 25 Nov 2010 17:30:08 +0100",
"platform_url": "https:\/\/quote.fm\/pwaldhauer"
},
"entities": [
{
"id": 10950,
"fullname": "aaronvince",
"username": "aaronvince",
"bio": "",
"avatar": "https:\/\/s3-eu-west-1.amazonaws.com\/avatars.quote.fm\/4216088a7b62c1414ba76ba550cfdda3_460.png",
"twitter": "aaron_vince",
"location": "Ontario, Canada",
"url": "justbeforethesynapse.tumblr.com",
"created": "Mon, 15 Oct 2012 06:28:29 +0200",
"platform_url": "https:\/\/quote.fm\/aaronvince"
},
{
"id": 1372,
"fullname": "Tilo Hensel",
"username": "tilohensel",
"bio": "Abi'12, Blogger, DJ, Webrealisierer, Hobby-Fotograf, Social Media Enthusiast.",
"avatar": "https:\/\/secure.gravatar.com\/avatar\/494c7fd6c0dd1bd5e29c85fbc09bdb88?s=460&d=https:\/\/quote.fm\/images\/avatar_generic_460.png",
"twitter": "TiloHensel",
"location": "Stuttgart",
"url": "www.tilo-hensel.de",
"created": "Wed, 07 Dec 2011 02:01:34 +0100",
"platform_url": "https:\/\/quote.fm\/tilohensel"
}
]
}