BlockRun
Back to Models

Poolside Laguna XS 2.1 (Free)

poolside/laguna-xs-2.1

nvidia

Poolside Laguna XS 2.1 hosted free by NVIDIA. Fast compact coding model (~161 tok/s).

Code Examples

from blockrun_llm import LLMClient

client = LLMClient()  # Uses BLOCKRUN_WALLET_KEY (never sent to server)
response = client.chat("poolside/laguna-xs-2.1", "Hello!")
import { LLMClient } from '@blockrun/llm';

const client = new LLMClient();  // Uses BLOCKRUN_WALLET_KEY (never sent to server)
const response = await client.chat('poolside/laguna-xs-2.1', 'Hello!');
curl -X POST https://blockrun.ai/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "PAYMENT-SIGNATURE: <payment_header>" \
  -d '{
    "model": "poolside/laguna-xs-2.1",
    "messages": [{"role": "user", "content": "Hello!"}],
    "max_tokens": 1024
  }'

Pricing

InputFree / 1M tokens
OutputFree / 1M tokens
Context131K tokens
Max Output16K tokens

Free model — no payment or wallet required.

Payment

Network
Base
Currency
USDC
Protocol
x402

Pay per request with USDC on Base. No subscription required.

Try It

Send a message to try Poolside Laguna XS 2.1 (Free)

Connect your wallet to enable payments

About Poolside Laguna XS 2.1 (Free)

Poolside Laguna XS 2.1 (Free) is a coding model from Poolside with a 131K-token context window and up to 16K tokens of output per call. It is free to call here — no payment header and no wallet. It is served through BlockRun's OpenAI-compatible API, so it can be called without an account, an API key, or a subscription.

What it costs

Poolside Laguna XS 2.1 (Free) is free to call on BlockRun. No payment header is required, no wallet needs funding, and no API key is issued — requests are rate limited per IP rather than billed. It is a practical way to develop against the API surface before moving production traffic onto a paid model.

Specifications

Context window
131,072 tokens
Maximum output
16,384 tokens
API compatibility
OpenAI-compatible
Payment
Free — no payment required
Categories
chat, coding

Calling it from your code

Pass poolside/laguna-xs-2.1 as the model field. Because the endpoint mirrors the OpenAI chat completions schema, any existing OpenAI client works by changing the base URL — streaming, tool use, and multi-turn messages all behave the same way.

The first request returns a 402 carrying the exact price; a signed retry runs it, and client libraries fold the two into one call — how the payment works. See the documentation for request and response shapes, the LLM API page for every model on this endpoint, or browse the full catalog of 78 chat models to compare alternatives.

Related models

Every model on BlockRun is reached through the same endpoint and the same payment flow, so switching is a one-line change to the model field. These are the closest alternatives to Poolside Laguna XS 2.1 (Free):