Three steps to your first routed call.

1

Install the SDK

npm install @proximarun/client
2

Initialize the client

import { ProximaClient } from '@proximarun/client';

const client = new ProximaClient({
  apiKey: process.env.PROXIMA_KEY
});
3

Make your first routed call

const result = await client.infer({
  prompt: messages,
  latencyBudgetMs: 400,
  costCeilingUsd: 0.002
});

That is all. Proximarun selects the node that fits your declared budget. The response is returned unchanged. Read the full quickstart for node pool setup and telemetry verification.