Skip to main content
GET
/
api
/
v1
/
public
/
preprompts
List public pre-prompts
curl --request GET \
  --url https://handauncle-backend-prod-205012263523.asia-south1.run.app/api/v1/public/preprompts
{
  "success": true,
  "data": {
    "preprompts": [
      {
        "key": "<string>",
        "publicValue": "<string>",
        "description": "<string>",
        "tags": [
          "<string>"
        ]
      }
    ]
  },
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "requestId": "<string>"
  }
}
Fetch the user-facing catalog (key, public value, optional description/tags). No authentication is required; clients can call this directly before sending preprompt_key with /api/v1/ai/chat.

Response

Public catalog returned.

success
enum<boolean>
required
Available options:
true
data
object
required
meta
object
required