cURL
curl --request GET \ --url https://api.aivra.cloud/v1/integration/prompts \ --header 'X-API-Key: <api-key>'
[ { "id": "<string>", "project_id": "<string>", "key": "<string>", "name": "<string>", "description": "<string>", "latest_version_id": "<string>", "created_at": "2023-11-07T05:31:56Z" } ]
latest_version_id
project_id
id
key
name
description
created_at
curl -H "X-API-Key: ak_xxxxxxxxx" \ "${BASE_URL}/v1/integration/prompts?project_id=proj_abc"
[ { "id": "pr_1", "project_id": "proj_abc", "key": "welcome", "name": "Boas-vindas", "description": null, "latest_version_id": "ver_12", "created_at": "2025-11-27T12:00:00Z" } ]
OK
Was this page helpful?