For AI agents: a documentation index is available at https://docs.parallel.ai/llms.txt. The full text of all docs is at https://docs.parallel.ai/llms-full.txt. You may also fetch any page as Markdown by appending
The Task API may return various warnings and errors during operation. This page documents the possible error types you might encounter when using the API.
.md to its URL or sending Accept: text/markdown.Errors
Errors result in a failure to process your request and are returned with appropriate HTTP status codes (4xx or 5xx).Warnings
Warnings indicate potential issues that don’t prevent the request from being processed but may affect results.Warning Handling
The Task API uses a warning system to provide guidance without blocking execution. Warnings are generated during validation and can be handled in two ways:Basis Properties
It is recommended to useFieldBasis in the run output rather than requesting similar information in the output schema.
This means you’ve included fields like citations, reasoning, or sources in your output schema, but this information is already provided automatically in every Task Run result through the Basis feature.
What is Basis? Every Task Run result includes a basis array containing citations, reasoning, and confidence levels for each output field. This is provided automatically; you don’t need to request it in your schema.
Why not include these in the output schema?
- Redundant: You’ll get duplicate data, wasting tokens and processing
- Less structured: The automatic Basis provides properly structured citations with URLs and excerpts
- Less reliable: Asking the model to generate its own citations may produce less accurate results than the built-in citation tracking
citationsconfidenceevidencereasoningsourcesourcessource_urls
output.basis in the response to get citations, reasoning, and confidence for each field. See Accessing Research Basis for details.
Error Reference
Error Response Format
All errors return a consistent JSON structure:detail field contains specific information about which fields failed validation and why.
402 Payment Required Troubleshooting
A 402 error indicates your account has insufficient credits to process the request. This can occur even if your account shows a positive balance due to in-flight balance reservations.Understanding In-Flight Balance
When you submit a task, the system reserves credits for the estimated cost before processing begins. This reservation is called the “in-flight balance.” Your available balance equals your total balance minus the in-flight balance from all currently running tasks. Example scenario:- Account balance: $10.00
- 5 running
protasks (each reserves ~0.50 reserved - Available balance: $9.50
Common Causes
How to Resolve
- Check your balance: View your current balance and usage at platform.parallel.ai
- Wait for tasks to complete: In-flight reservations are released when tasks finish
- Add credits: Top up your account balance if genuinely low
- Reduce concurrency: Lower the number of parallel tasks to reduce reserved credits
- Use lower-tier processors: Reserve fewer credits per task by using
baseorliteprocessors where appropriate