search_prompts
Search the PromptSharp prompt library. Returns ready-to-run AI prompts scoped to your license tier (no token = 15 public teasers; vertical Pro = your vertical; all-access = the full cross-vertical library). Locked results are shown as stubs with an upgrade hint.
Parameters4
| query | string | required | Keywords to match against title, use-case, section, vertical, and prompt body. |
| vertical | string | optional | Optional vertical slug filter, e.g. sales, marketing, finance, cpg, dev, product, csuite, consulting, career, personal_finance, law, air. |
| section | string | optional | Optional section slug filter within a vertical. |
| limit | integer | optional | Max results (1-25, default 10). |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Keywords to match against title, use-case, section, vertical, and prompt body."
},
"vertical": {
"type": "string",
"description": "Optional vertical slug filter, e.g. sales, marketing, finance, cpg, dev, product, csuite, consulting, career, personal_finance, law, air."
},
"section": {
"type": "string",
"description": "Optional section slug filter within a vertical."
},
"limit": {
"type": "integer",
"description": "Max results (1-25, default 10).",
"minimum": 1,
"maximum": 25
}
},
"required": [
"query"
]
}