curl -X GET "https://api.helicone.ai/v1/prompt-2025/tags" \
-H "Authorization: Bearer $HELICONE_API_KEY"
const response = await fetch('https://api.helicone.ai/v1/prompt-2025/tags', {
method: 'GET',
headers: {
'Authorization': `Bearer ${HELICONE_API_KEY}`,
},
});
const tags = await response.json();
[
"support",
"chatbot",
"classification",
"customer",
"analytics",
"qa"
]
Prompts
Get Prompt Tags
Retrieve all available prompt tags
GET
/
v1
/
prompt-2025
/
tags
curl -X GET "https://api.helicone.ai/v1/prompt-2025/tags" \
-H "Authorization: Bearer $HELICONE_API_KEY"
const response = await fetch('https://api.helicone.ai/v1/prompt-2025/tags', {
method: 'GET',
headers: {
'Authorization': `Bearer ${HELICONE_API_KEY}`,
},
});
const tags = await response.json();
[
"support",
"chatbot",
"classification",
"customer",
"analytics",
"qa"
]
Retrieves a list of all unique tags used across all prompts in the organization.
Response
Returns an array of unique tag strings.curl -X GET "https://api.helicone.ai/v1/prompt-2025/tags" \
-H "Authorization: Bearer $HELICONE_API_KEY"
const response = await fetch('https://api.helicone.ai/v1/prompt-2025/tags', {
method: 'GET',
headers: {
'Authorization': `Bearer ${HELICONE_API_KEY}`,
},
});
const tags = await response.json();
[
"support",
"chatbot",
"classification",
"customer",
"analytics",
"qa"
]
Was this page helpful?
⌘I