curl -X POST "https://api.helicone.ai/v1/prompt-2025/query" \
-H "Authorization: Bearer $HELICONE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"search": "support",
"tagsFilter": ["chatbot", "customer"],
"page": 0,
"pageSize": 10
}'
[
{
"id": "prompt_123",
"name": "Customer Support Bot",
"tags": ["support", "chatbot"],
"created_at": "2024-01-15T10:30:00Z"
},
{
"id": "prompt_456",
"name": "Support Ticket Classifier",
"tags": ["support", "classification"],
"created_at": "2024-01-14T09:15:00Z"
}
]
Search and filter prompts with pagination
curl -X POST "https://api.helicone.ai/v1/prompt-2025/query" \
-H "Authorization: Bearer $HELICONE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"search": "support",
"tagsFilter": ["chatbot", "customer"],
"page": 0,
"pageSize": 10
}'
[
{
"id": "prompt_123",
"name": "Customer Support Bot",
"tags": ["support", "chatbot"],
"created_at": "2024-01-15T10:30:00Z"
},
{
"id": "prompt_456",
"name": "Support Ticket Classifier",
"tags": ["support", "classification"],
"created_at": "2024-01-14T09:15:00Z"
}
]
curl -X POST "https://api.helicone.ai/v1/prompt-2025/query" \
-H "Authorization: Bearer $HELICONE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"search": "support",
"tagsFilter": ["chatbot", "customer"],
"page": 0,
"pageSize": 10
}'
[
{
"id": "prompt_123",
"name": "Customer Support Bot",
"tags": ["support", "chatbot"],
"created_at": "2024-01-15T10:30:00Z"
},
{
"id": "prompt_456",
"name": "Support Ticket Classifier",
"tags": ["support", "classification"],
"created_at": "2024-01-14T09:15:00Z"
}
]
Was this page helpful?