cURL
curl --request GET \ --url https://api.example.com/v1/prompts/ \ --header 'X-API-Key: <api-key>'
{ "data": { "data": [ { "id": "<string>", "name": "<string>", "prompt": "<string>", "response_schema": { "draft_07": {} }, "version": 123, "created_at": 123, "description": "<string>" } ], "total": 123, "page": 1, "page_size": 50 }, "links": { "self": { "href": "<string>", "rel": "<string>", "method": "GET", "title": "<string>" }, "total": 123, "prev": { "href": "<string>", "rel": "<string>", "method": "GET", "title": "<string>" }, "next": { "href": "<string>", "rel": "<string>", "method": "GET", "title": "<string>" } }, "response_type": "PaginatedPromptListResponse" }
List latest versions of all prompts with pagination.
API Key for external integrations (format: greetincs_...)
Page number
x >= 1
Number of prompts per page
1 <= x <= 100
Successful Response
Paginated list of prompt summaries.
Paginated list of prompt summaries data.
Show child attributes