curl -X GET "https://api.helicone.ai/v1/prompt-2025/count" \
-H "Authorization: Bearer $HELICONE_API_KEY"
const response = await fetch('https://api.helicone.ai/v1/prompt-2025/count', {
method: 'GET',
headers: {
'Authorization': `Bearer ${HELICONE_API_KEY}`,
},
});
const count = await response.json();
42
Prompts
Get Prompt Count
Get the total number of prompts
GET
/
v1
/
prompt-2025
/
count
curl -X GET "https://api.helicone.ai/v1/prompt-2025/count" \
-H "Authorization: Bearer $HELICONE_API_KEY"
const response = await fetch('https://api.helicone.ai/v1/prompt-2025/count', {
method: 'GET',
headers: {
'Authorization': `Bearer ${HELICONE_API_KEY}`,
},
});
const count = await response.json();
42
Retrieves the total count of prompts in the organization.
Response
Returns the total number of prompts as an integer.curl -X GET "https://api.helicone.ai/v1/prompt-2025/count" \
-H "Authorization: Bearer $HELICONE_API_KEY"
const response = await fetch('https://api.helicone.ai/v1/prompt-2025/count', {
method: 'GET',
headers: {
'Authorization': `Bearer ${HELICONE_API_KEY}`,
},
});
const count = await response.json();
42
Was this page helpful?