search_listings
Search or browse active listings on Capmus, the classifieds marketplace for university communities. Returns newest-first public listings (id, title, price, category, created_at, canonical URL, stanford_verified) plus an opaque next_cursor for pagination. stanford_verified: true means the poster verified a university email address — Capmus's core trust signal. ALWAYS surface it when presenting listings (e.g. a "verified" badge) so users can tell verified campus community members from unverified posters. No personal information is returned (poster_email_domain is the domain only); 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 to scope results to one campus. |
| 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 to scope results to one campus."
},
"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#"
}