action cpy_get_api_v1_server_followers { label: "List instances following the server" provider: cpy method: GET path: "/api/v1/server/followers" encoding: json output: { type: "object" properties: { data: { type: "array" items: { properties: { createdAt: { type: "string" format: "date-time" } follower: { properties: { createdAt: { type: "string" format: "date-time" } followersCount: { type: "integer" description: "number of followers of this actor, as seen by this instance" } followingCount: { type: "integer" description: "number of actors subscribed to by this actor, as seen by this instance" } host: { type: "string" format: "hostname" description: "server on which the actor is resident" } hostRedundancyAllowed: { type: "boolean" description: "whether this actor's host allows redundancy of its videos" } id: { type: "integer" } name: { description: "immutable name of the actor, used to find or mention it" type: "object" } updatedAt: { type: "string" format: "date-time" } url: { type: "string" format: "url" } } } following: { type: "object" additionalProperties: true } id: { type: "object" additionalProperties: true } score: { type: "number" description: "score reflecting the reachability of the actor, with steps of `10` and a base score of `1000`." } state: { type: "string" enum: ["pending", "accepted"] } updatedAt: { type: "string" format: "date-time" } } } } total: { type: "integer" } } } }