tools.ozone.set.getValues
GET/xrpc/tools.ozone.set.getValues
This endpoint is part of the Ozone moderation service APIs. Requests usually require authentication, are directed to the user's PDS intance, and proxied to the Ozone instance indicated by the DID in the service proxying header. Admin authenentication may also be possible, with request sent directly to the Ozone instance.
To learn more about calling atproto API endpoints like this one, see the API Hosts and Auth guide.
Get a specific set and its values
Request
Query Parameters
Possible values: >= 1
and <= 1000
Default value: 100
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema
set
object
required
Possible values: >= 3 characters
and <= 128 characters
Possible values: <= 10240 characters
{
"set": {
"name": "string",
"description": "string",
"setSize": 0,
"createdAt": "2024-11-07T00:27:32.178Z",
"updatedAt": "2024-11-07T00:27:32.178Z"
},
"values": [
"string"
],
"cursor": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [InvalidRequest
, ExpiredToken
, InvalidToken
, SetNotFound
]
{
"error": "InvalidRequest",
"message": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "string"
}