Curated Lists
Overview
The Curated Lists API provides access to predefined lists of users maintained within the Ethos network, such as lists for highlighted users or those in contributor mode.
Endpoints
Get Curated List Userkeys
Description: Retrieves a list of userkeys from a specific public curated list, returned in random order.
Authentication Required: No
Parameters
Path Parameters
list
string
The identifier of the curated list (e.g., 'contributor_mode'
, 'highlights'
).
Query Parameters
limit
number
Yes
Maximum number of userkeys to return (max 1000).
Responses
Success Response
Code: 200 OK
Error Responses
Code: 400 Bad Request (Example: Missing/invalid list or limit)
Example
Request
Response
Notes
Retrieves a list of userkeys from a named public curated list.
The
list
parameter must be one of the predefined list names (e.g.,contributor_mode
,highlights
).The
limit
parameter is required.Returns userkeys in a random order.
Does not support pagination offsets or return total counts.
Last updated