Directory listing search and pagination (verified listings with a listing.detail AT URI only).
Parameters
Output
application/jsoncursor
string
Optional
No description available.
listings
array
Required
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": [
"listings"
],
"properties": {
"cursor": {
"type": "string",
"maxLength": 512
},
"listings": {
"type": "array",
"items": {
"ref": "#listingCardSearch",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"q": {
"type": "string",
"maxLength": 512
},
"sort": {
"enum": [
"popular",
"newest",
"alphabetical"
],
"type": "string",
"default": "popular",
"maxLength": 24
},
"limit": {
"type": "integer",
"default": 24,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string",
"maxLength": 512
}
}
},
"description": "Directory listing search and pagination (verified listings with a listing.detail AT URI only)."
}