List project prompts
Returns a paginated, cursor-based list of prompts configured for the project. Supports text search, provider filtering, and tag filtering.
GET /prompts
List project prompts
Returns a paginated, cursor-based list of prompts configured for the project. Supports text search, provider filtering, and tag filtering.
Authentication: API key required (Bearer token)
Parameters
| Name | In | Required | Description |
|---|---|---|---|
limit | query | No | Maximum number of prompts to return. |
cursor | query | No | Pagination cursor from a previous response. |
q | query | No | Case-insensitive search term applied to prompt text. |
provider | query | No | Filter prompts by provider ID (chatgpt, perplexity, gemini, grok, google_aio, copilot). |
tag | query | No | Filter prompts by tag. |
Request Example
curl -X GET https://sellm.io/api/v1/prompts \
-H "Authorization: Bearer sellm_your_api_key_here"
Responses
| Status | Description |
|---|---|
200 | Prompts with provider IDs |
400 | Bad request |
401 | Unauthorized |
429 | Rate limited |
500 | Internal error |