Returns a list of users the user specified by its username or id is following. 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 followings of the user "pwaldhauer" (Response shortened)
GET
Params:
{
"totalCount": "156",
"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": 308,
"fullname": "nils",
"username": "nils",
"bio": null,
"avatar": "https:\/\/secure.gravatar.com\/avatar\/5ee18bd572f3f565c4c6c9a3caab2e9d?s=460&d=https:\/\/quote.fm\/images\/avatar_generic_460.png",
"twitter": null,
"location": "Germany",
"url": null,
"created": "Wed, 14 Sep 2011 12:36:16 +0200",
"platform_url": "https:\/\/quote.fm\/nils"
},
{
"id": 9807,
"fullname": "Rob",
"username": "quoter",
"bio": "Software professional with a passion for iOS, GTD, and minimalism.",
"avatar": "https:\/\/s3-eu-west-1.amazonaws.com\/avatars.quote.fm\/d41270620c166194ef0571c69eeac79d_460.jpg",
"twitter": "swpro",
"location": "NL",
"url": "",
"created": "Mon, 17 Sep 2012 16:54:06 +0200",
"platform_url": "https:\/\/quote.fm\/quoter"
}
]
}