# Returns a list of followers or following for a domain Returns a list of followers or following for a domain Endpoint: GET /followers/{domain} Version: 1.0.0 ## Path parameters: - `domain` (string, required) The domain name to see followers for ## Query parameters: - `relationship_type` (string) The type of relationship to return (followers or following). Default is followers. Enum: "followers", "following" - `take` (number) The number of followers to return. Default is 50. Max is 100. - `cursor` (number) The cursor to use for pagination ## Response 200 fields (application/json): - `data` (array) - `data.domain` (string) The domain name of follower or followee - `meta` (object) - `meta.total_count` (integer) Total returned count - `meta.pagination` (object) - `meta.pagination.cursor` (integer) Cursor position for pagination - `meta.pagination.take` (integer) Number of items to return - `relationship_type` (string) Relationship type (followers or following) Enum: "followers", "following" - `domain` (string) The requested domain ## Response 404 fields