defiance_catalog_search
Full-text search over the public research-use-only catalog. Returns matching sequences with canonical links, from-price, and stock availability. Catalog facts only, never use guidance.
Parameters3
| q | string | required | Search text, at least 2 characters. |
| limit | integer | optional | Maximum results (1 to 50). |
| response_format | string | optional | Return shape: json (structured) or markdown (a readable briefing). |
Raw schema
{
"type": "object",
"properties": {
"q": {
"type": "string",
"minLength": 2,
"maxLength": 200,
"description": "Search text, at least 2 characters."
},
"limit": {
"default": 20,
"description": "Maximum results (1 to 50).",
"type": "integer",
"minimum": 1,
"maximum": 50
},
"response_format": {
"default": "json",
"type": "string",
"enum": [
"json",
"markdown"
],
"description": "Return shape: json (structured) or markdown (a readable briefing)."
}
},
"required": [
"q"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}