action dev_get_followers { label: "Followers" description: "This endpoint allows the client to retrieve a list of the followers they have.\n \"Followers\" are users that are following other users on the website.\n It supports pagination, each page will contain 80 followers by default." provider: dev method: GET path: "/api/followers/users" encoding: json input: { type: "object" properties: { sort: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "A follower" properties: { id: { type: "integer" format: "int32" } name: { type: "string" description: "The follower's name" } path: { type: "string" description: "A path to the follower's profile" } profile_image: { type: "string" description: "Profile image (640x640)" } type_of: { type: "string" description: "user_follower by default" } user_id: { type: "integer" format: "int32" description: "The follower's user id" } } } } }