Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET "https://api.helicone.ai/v1/prompt-2025/environments" \ -H "Authorization: Bearer $HELICONE_API_KEY"
const response = await fetch('https://api.helicone.ai/v1/prompt-2025/environments', { method: 'GET', headers: { 'Authorization': `Bearer ${HELICONE_API_KEY}`, }, }); const environments = await response.json();
[ "production", "staging", "development" ]
Get all available environments across your prompts
Was this page helpful?