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.
Get the total number of prompts
curl -X GET "https://api.inquantum.ai/v1/prompt-2025/count" \ -H "Authorization: Bearer $PLANCK_API_KEY"
const response = await fetch('https://api.inquantum.ai/v1/prompt-2025/count', { method: 'GET', headers: { 'Authorization': `Bearer ${PLANCK_API_KEY}`, }, }); const count = await response.json();
42