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.
Common embed and checkout failure modes.
{ "error": "Human-readable message" }
const res = await fetch(url, options) if (!res.ok) { const body = await res.json().catch(() => ({})) throw new Error(body.error || String(res.status)) }