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

NameInRequiredDescription
limitqueryNoMaximum number of prompts to return.
cursorqueryNoPagination cursor from a previous response.
qqueryNoCase-insensitive search term applied to prompt text.
providerqueryNoFilter prompts by provider ID (chatgpt, perplexity, gemini, grok, google_aio, copilot).
tagqueryNoFilter prompts by tag.

Request Example

curl -X GET https://sellm.io/api/v1/prompts \
  -H "Authorization: Bearer sellm_your_api_key_here"

Responses

StatusDescription
200Prompts with provider IDs
400Bad request
401Unauthorized
429Rate limited
500Internal error