HOST · Error
E_CF_PAGES_API
Cloudflare Pages-specific API error.
— · Resolution
How to recover
Inspect `error.context` for the Pages-side error code.
— · The shape
What an instance looks like
throw new AgentryError({
code: 'E_CF_PAGES_API',
phase: 'init',
message: '…contextual message…',
context: { /* adapter-specific */ },
suggestedFix: 'Inspect `error.context` for the Pages-side error code.',
docs: 'https://openagentry.dev/errors/E_CF_PAGES_API',
});
The context field carries adapter-specific
detail (HTTP status, missing env-var names, validation issues). It
never contains secret values.
— · See also
Related codes from @openagentry/adapter-host-cloudflare
-
E_CF_AUTHCloudflare API token / account ID missing or rejected. -
E_CF_NOT_FOUNDCloudflare project, deployment, or domain not found. -
E_CF_HTTPCloudflare returned a non-OK HTTP status. -
E_CF_NETWORKNetwork failure reaching Cloudflare. -
E_CF_RATE_LIMITEDCloudflare API rate limit reached. -
E_CF_SCHEMAInput failed Zod validation.