DEVELOPER PLATFORM
Every model. One integration.
An OpenAI-compatible interface for model-specific markets and best execution.
START BUILDING
Best execution starts with one request.
Keep your application interface familiar. Express the model and service constraints; let the execution layer select eligible supply.
Integration specification
The examples describe the intended SDK and production API. This website includes a working static market-data endpoint and local routing simulator. Live inference and API credentials are not connected.
TypeScript
import Liquid from "@liquid/sdk";
const liquid = new Liquid({
apiKey: process.env.LIQUID_API_KEY
});
const response = await liquid.responses.create({
model: "sonnet",
input: "Design an efficient inference pipeline.",
execution: "best",
constraints: {
max_ttft_ms: 250,
region: "us-west"
}
});OpenAI-compatible
Use familiar responses and streaming patterns with an execution policy.
Explicit constraints
Set jurisdiction, latency, context, and quality before routing begins.