search_listings
Search live GSA federal-surplus auction listings (facts only — no images). Filter by state, category, keyword, and price. Raw listings cover sanctioned federal sources; sold-price comps span the full market.
Parameters
| country | string | optional | |
| state | string | optional | 2-letter state code |
| category | string | optional | |
| source | string | optional | |
| q | string | optional | Title keyword |
| priceMin | number | optional | |
| priceMax | number | optional | |
| limit | integer | optional | |
| offset | integer | optional |
Raw schema
{
"type": "object",
"properties": {
"country": {
"type": "string",
"enum": [
"US"
],
"default": "US"
},
"state": {
"type": "string",
"description": "2-letter state code"
},
"category": {
"type": "string"
},
"source": {
"type": "string",
"enum": [
"gsa"
],
"default": "gsa"
},
"q": {
"type": "string",
"description": "Title keyword"
},
"priceMin": {
"type": "number"
},
"priceMax": {
"type": "number"
},
"limit": {
"type": "integer",
"maximum": 100,
"default": 25
},
"offset": {
"type": "integer",
"default": 0
}
}
}