The public Community directory. Unauthenticated; an authenticated request additionally receives viewer state on each Community.
Parameters
Output
Encoding
application/jsoncommunities
array
Required
No description available.
cursor
string
Optional
No description available.
Errors
InvalidCursor
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidCursor"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"communities"
],
"properties": {
"cursor": {
"type": "string"
},
"communities": {
"type": "array",
"items": {
"ref": "com.getorbyt.community.defs#view",
"type": "ref"
},
"maxLength": 50
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"sort": {
"type": "string",
"knownValues": [
"popular",
"new"
]
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 50,
"minimum": 1
},
"query": {
"type": "string",
"maxLength": 100
},
"cursor": {
"type": "string"
}
}
},
"description": "The public Community directory. Unauthenticated; an authenticated request additionally receives viewer state on each Community."
}