Parasail offers 27 models through Lava’s AI Gateway, supporting Chat Completions. Authentication uses Authorization: Bearer. See the Parasail API docs for provider-specific parameters.
Supports both managed API keys (from Lava) and BYOK mode.
Quick Start
const response = await fetch('https://api.lavapayments.com/v1/forward?u=https%3A%2F%2Fapi.parasail.io%2Fv1%2Fchat%2Fcompletions', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${forwardToken}`,
},
body: JSON.stringify({
model: 'parasail-anubis-pro',
messages: [{ role: "user", content: "Hello!" }],
}),
});
Chat Completions
Target URL: https://api.parasail.io/v1/chat/completions
| |
|---|
| Content Type | application/json |
| Streaming | Yes (set stream: true in request body) |
| Model | Input / 1M tokens | Output / 1M tokens |
|---|
| cloud-sambanova-llama-3-405b-instruct | $7.00 | $7.00 |
| cloud-sambanova-llama-3-70b-instruct | $1.20 | $1.20 |
| parasail-anubis-pro | $0.80 | $1.00 |
| parasail-deepseek-r1-0528 | $0.79 | $4.00 |
| parasail-deepseek-v3-0324 | $0.79 | $1.15 |
| parasail-qwen25-vl-72b-instruct | $0.70 | $0.70 |
| parasail-skyfall-36b-v2-fp8 | $0.50 | $0.80 |
| parasail-valkyrie-49b-v1 | $0.50 | $0.80 |
| parasail-wizardlm-2-8x22b | $0.48 | $0.48 |
| parasail-drummer-anubis-70b-1-1 | $0.30 | $0.80 |
| parasail-llama-33-70b-fp8 | $0.28 | $0.78 |
| cloud-sambanova-llama-3-8b-instruct | $0.20 | $0.20 |
| parasail-llama-4-maverick-instruct-fp8 | $0.15 | $0.85 |
| parasail-qwen3-235b-a22b | $0.13 | $0.85 |
| parasail-gemma3-27b-it | $0.10 | $0.40 |
| parasail-mistral-small-31-24b-instruct | $0.10 | $0.30 |
| parasail-qwen3-32b | $0.10 | $0.50 |
| parasail-ui-tars-1p5-7b | $0.10 | $0.20 |
| parasail-llama-4-scout-instruct | $0.09 | $0.48 |
| parasail-mistral-devstral-small | $0.09 | $0.30 |
| parasail-qwen3-30b-a3b | $0.09 | $0.50 |
| parasail-mistral-small-32-24b | $0.09 | $0.30 |
| parasail-mythomax-13b | $0.08 | $0.11 |
| parasail-qwen-3-14b | $0.06 | $0.25 |
| parasail-deepseek-r1-0528-qwen3-8b | $0.05 | $0.10 |
| parasail-orpheus-3b-01-ft | $0.05 | $0.15 |
| parasail-mistral-nemo | $0.03 | $0.11 |
Next Steps