Prompts API
Manage prompts and retrieve performance data.
GET
List all prompts in your workspace.
{
"data": [
{
"id": "6868b4c1f2a3b4c5d6e7f8a9",
"text": "best vacation rental direct booking platform",
"engines": ["gpt", "perplexity", "claude", "gemini"],
"category": "discovery",
"createdAt": "2026-06-01T00:00:00.000Z",
"updatedAt": "2026-06-01T00:00:00.000Z"
}
],
"pagination": { "hasMore": false, "nextCursor": null }
}
POST
Add a new prompt to your workspace. Requires prompts:write scope.
{
"data": {
"id": "6868b4c1f2a3b4c5d6e7f8a9",
"text": "best vacation rental direct booking platform",
"engines": ["gpt", "perplexity", "claude", "gemini"],
"category": null,
"createdAt": "2026-06-01T00:00:00.000Z"
}
}
Intent classification runs asynchronously after creation and is not returned in the immediate response.
Next steps
Was this page helpful?Report an issue →