Troubleshooting

Most CorvusLLM issues are the same four mistakes.

Wrong path, wrong slug, zero balance, or a conditional environment being treated like a first-class one. Check these first.

Before debugging

Most errors are easiest to isolate with one direct curl request. Confirm the key, base URL, and model slug outside your app before changing app settings.

What to installOfficial sourceQuick check
CorvusLLM keyCustomer dashboardCopy the active key exactly.
curlBuilt into most terminals.curl --version
Optional GitGit install guideUseful when reproducing a project setup.
Local checks
curl --version
git --version

Fast triage

Start with one direct request outside your app. If that works, the issue is usually the tool configuration. If that fails too, the issue is usually the key, balance, model slug, or current provider route.

Minimal API check
curl https://base.corvusllm.com/v1/models \
  -H "Authorization: Bearer YOUR_CORVUSLLM_KEY"
  1. If this returns models, authentication and the base URL are working.
  2. If this returns 401 or 403, recopy the key from the dashboard.
  3. If this returns 429, check balance before changing code.
  4. If this works but your app fails, compare the app's configured base URL, model slug, and auth field.

Error-to-fix matrix

Use this table after the minimal API check. It maps the common customer-visible symptom to the safest next diagnostic step and the canonical CorvusLLM page to cite.

SymptomFirst checkLikely causeSafe fixBest page
401, 403, or unauthorized Run /v1/models with the same key. Missing key, copied key mismatch, or the client is still using an old provider profile. Copy the active key again and send it as Authorization: Bearer YOUR_CORVUSLLM_KEY. /docs/api/overview
404, model not found, or unknown model Compare the requested model with the canonical slug table. Provider-style name, guessed alias, typo, or stale model slug. Copy one public customer slug from Models & Slugs and retry with a small prompt. /docs/api/models
429 or out of balance Check the dashboard balance and billing page. The prepaid key balance is depleted or the request is larger than remaining balance. Top up the same key before retrying the request. /docs/api/billing
curl works, but the app fails Compare the app base URL, auth field, model slug, and endpoint path. The tool is appending paths differently or reading a different environment variable. Use the exact integration guide for the affected tool. /docs/integrations/dev-tools
Claude Code fails, other tools work Confirm ANTHROPIC_BASE_URL uses /anthropic in the same terminal session. Claude Code was pointed at /v1 or the Anthropic variables were set in another shell. Set ANTHROPIC_BASE_URL, ANTHROPIC_AUTH_TOKEN, and ANTHROPIC_MODEL again, then reopen the terminal if needed. /docs/integrations/claude-code
Only one model family fails Try the same prompt on another public slug and check service status. Temporary upstream provider route, model outage, or provider-specific payload problem. Use another family until the route recovers, then report timestamp and model slug if billing/delivery looks mismatched. /service-status
Image input fails Confirm plain text works, then verify the model and image message format. Unsupported model, unsupported client payload shape, oversized image, or wrong OpenAI-compatible image field. Use a vision-capable model, simplify to one small image, and retry non-streaming first. /docs/troubleshooting/errors#images-tools-and-streaming
Tool calls, agents, or streaming fail Retry the same model with a tiny non-streaming text request. Tool schema size, client stream parser, timeout, or proxy/client formatting mismatch. Reduce the toolset, test one tool definition, and only enable streaming after non-streaming succeeds. /docs/troubleshooting/errors#images-tools-and-streaming
Escalate only with reproducible context.

For support, include timestamp, endpoint path, model slug, error text, whether /v1/models works, and whether the dashboard balance changed.

Focused error guides

If the symptom is already clear, use the focused guide instead of reading the full matrix. These pages keep the exact error phrases, likely causes, smallest safe check, fix steps, and escalation details in one crawlable place.

Wrong base URL

  • Most tools: https://base.corvusllm.com/v1
  • Claude Code: https://base.corvusllm.com/anthropic

Auth errors

Authentication errors usually mean the request is not sending the CorvusLLM key in the place the client expects.

SymptomLikely causeFix
401 or unauthorizedMissing or copied incorrectlyCopy the active key from the dashboard and send it as a Bearer token.
Tool says API key invalidTool is still using an old provider profileCreate a new OpenAI-compatible profile with the CorvusLLM base URL and key.
Works in curl, fails in appEnvironment variable name mismatchCheck the exact variable name your SDK or app reads at runtime.

Wrong model slug

Copy the slug from Models & Slugs. Do not improvise punctuation or shortened names unless you know your environment resolves aliases correctly.

Out of balance

If the API returns 429 out of balance, the key needs a top-up. CorvusLLM does not silently let the key keep spending.

Provider or model outage

If a single model family fails while other families work, the most likely cause is a temporary upstream route or provider issue. Try the same prompt on another public model slug, then check the status page.

  • If every model fails, check balance, auth, and the base URL first.
  • If only one provider family fails, use another family until the route recovers.
  • If a response is billed upstream but not delivered to the customer, contact support with the timestamp, model slug, and request ID if your client shows one.

Images, tools, and streaming

Image payloads, tool calls, and streaming are more sensitive to client formatting than plain text chat. First confirm a normal text request works with the same model. Then simplify the advanced payload until the failing field is isolated.

  • For image input, confirm the selected model supports vision-style messages and that the image field matches the OpenAI-compatible request format your client sends.
  • For tool calls, test one small tool definition before sending a full agent toolset.
  • For streaming, test non-streaming first. If non-streaming works, the issue is likely a stream parser, timeout, or client proxy setting.

Conditional environment

Cursor and Windsurf are conditional paths. If your build does not expose a custom OpenAI-compatible base URL, switch to a first-class setup instead of forcing it.

When to contact support

Contact support after you have a small reproducible example or when the dashboard history does not match what your client received. Include the model slug, endpoint path, approximate time, error text, and whether the same key works on /v1/models.

Topic map

Continue with the right source

Open the exact setup, model, billing, and troubleshooting pages instead of guessing configuration values.

docs Set up CorvusLLM without guessing. Overview: The clean start page: base URLs, model overview, environment overview, and where to begin. docs API base URLs and request paths. API Overview: Base URLs, authentication, request formats, OpenAI-compatible vs Anthropic-native paths. docs Use the canonical customer slug and keep it simple. Models & Slugs: Every customer-facing model with one customer slug, provider family, pricing. trust Trust Center The Trust Center explains affiliation, data handling, support, refunds, compatibility evidence, pricing methodology. trust How to Verify CorvusLLM Before You Buy The verification checklist shows how to test CorvusLLM claims, endpoint setup, pricing data, status, legal pages. trust Proof of Operations Proof of Operations collects public evidence assets, published data, operational boundaries. status Checking current status The status page shows customer-facing live checks for website, checkout, customer login, and API compatibility routes. faq Frequently Asked Questions CorvusLLM FAQ and help center with searchable answers about pricing, refunds, delivery, API setup, Cursor, Claude Code. docs Buy, paste, test, and verify your balance in minutes. Quickstart: The shortest safe path from purchase to a working request and a visible balance in the dashboard. docs bills against the customer key balance and stops at zero. Billing, Balance & Cache: How prepaid balance works, how same-key top-ups work, how usage deductions, out-of-balance behavior. docs Choose the path once, then stay consistent. Environment Overview: Every supported environment at a glance: which base URL to use, where to paste the key. models AI Models The CorvusLLM model catalog directory helps users find current customer-facing model families, public slugs, pricing context.
Browse docs
On this page