search_listings
Search or browse active listings on SUpost, the marketplace for Stanford. Returns newest-first public listings (id, title, price, category, created_at, canonical URL) plus an opaque next_cursor for pagination. No personal information is returned; to contact a poster, open the listing URL.
Parameters6
| q | string | optional | Full-text search query. |
| cat | string | optional | Category id or label: 1/"jobs & services" (alias "jobs"), 3/"housing", 5/"for sale", 8/"friendship & dating", 9/"community". |
| university | integer | optional | Numeric university id. Defaults to Stanford on supost.com. |
| max_price | number | optional | Inclusive upper price bound in USD; excludes unpriced listings. |
| limit | integer | optional | Page size (default 25, max 50). |
| cursor | string | optional | Opaque cursor from a previous response's next_cursor. |
Raw schema
{
"type": "object",
"properties": {
"q": {
"type": "string",
"minLength": 1,
"maxLength": 200,
"description": "Full-text search query."
},
"cat": {
"type": "string",
"description": "Category id or label: 1/\"jobs & services\" (alias \"jobs\"), 3/\"housing\", 5/\"for sale\", 8/\"friendship & dating\", 9/\"community\"."
},
"university": {
"type": "integer",
"exclusiveMinimum": 0,
"description": "Numeric university id. Defaults to Stanford on supost.com."
},
"max_price": {
"type": "number",
"minimum": 0,
"description": "Inclusive upper price bound in USD; excludes unpriced listings."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"description": "Page size (default 25, max 50)."
},
"cursor": {
"type": "string",
"description": "Opaque cursor from a previous response's next_cursor."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}