diegosouzapw/OmniRoute · error · WebFetchExecutionError

Web fetch failed

Error message

Web fetch failed

What it means

Error "Web fetch failed" thrown in diegosouzapw/OmniRoute.

Source

Thrown at src/lib/skills/webFetchExecution.ts:158

    throw new WebFetchExecutionError("Missing required field: url", 400);
  }

  const { provider, credentials } = await resolveProviderAndCredentials(input);

  const result = await handleWebFetch(
    {
      url: input.url,
      format: input.format,
      depth: input.depth,
      wait_for_selector: input.wait_for_selector,
      include_metadata: input.include_metadata,
    },
    credentials,
    provider
  );

  if (!result.success || !result.data) {
    throw new WebFetchExecutionError(result.error || "Web fetch failed", result.status || 502);
  }

  return result.data;
}

View on GitHub (pinned to a179ffed5b)

When it happens

Trigger: Thrown at src/lib/skills/webFetchExecution.ts:158 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of diegosouzapw/OmniRoute@a179ffed5b (2026-08-25). Data as JSON: /api/errors/a0b59cd44bd864b6. Report an issue: GitHub.