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.
Understanding CubeStack API error responses.
{ "error": "Error message describing what went wrong" }
200
201
400
401
403
404
409
429
500
const response = await fetch(url, { headers }); if (!response.ok) { const { error } = await response.json(); console.error(`API Error (${response.status}): ${error}`); }
Was this page helpful?