Raw schema
{
"type": "object",
"properties": {
"q": {
"description": "Free-text query over title, company, and location. Synonyms expand (ml, ai, swe, pm, gtm, nyc, sf, la).",
"type": "string",
"maxLength": 120
},
"fn": {
"description": "Function filter, comma-separated. Values: engineering, research, product, design, sales, marketing, operations, other.",
"type": "string"
},
"sen": {
"description": "Seniority filter, comma-separated. Values: founding, exec, staff, senior, junior, intern.",
"type": "string"
},
"emp": {
"description": "Employment type, comma-separated. Values: FullTime, PartTime, Intern, Contract, Temporary.",
"type": "string"
},
"loc": {
"description": "Location filter: comma-separated city names (see facets.loc in any response for the live vocabulary), plus the special value \"remote\".",
"type": "string"
},
"remote": {
"description": "true = only roles open to remote candidates.",
"type": "boolean"
},
"comp": {
"description": "Minimum annual compensation in USD: matches roles whose posted pay band reaches this number. Only roles with posted comp match.",
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"portfolio": {
"description": "Portfolio tier, comma-separated: speedrun (the a16z speedrun accelerator portfolio) and/or a16z (the wider a16z portfolio).",
"type": "string"
},
"cohort": {
"description": "speedrun cohort tag(s), comma-separated, e.g. SR007.",
"type": "string"
},
"company": {
"description": "Exact company key (as returned in job.company).",
"type": "string"
},
"stealth": {
"description": "'only' = unannounced (stealth) roles only; 'hide' = exclude them.",
"type": "string",
"enum": [
"only",
"hide"
]
},
"scope": {
"description": "'everywhere' widens the search past the a16z portfolio into the broader startup universe. Server-gated: while that scope is dark this is inert.",
"type": "string",
"enum": [
"portfolio",
"everywhere"
]
},
"sort": {
"description": "rel = relevance (default when q is set), new = newest first (default otherwise), comp = highest posted comp first.",
"type": "string",
"enum": [
"rel",
"new",
"comp"
]
},
"page": {
"description": "0-based page number, 50 jobs per page.",
"type": "integer",
"minimum": 0,
"maximum": 200
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}