Create a client with your API key. The key is automatically included in all requests via an interceptor.
import { createOpenStatusClient } from "@openstatus/sdk-node";
const client = createOpenStatusClient({
apiKey: process.env.OPENSTATUS_API_KEY,
});
// No headers needed on individual calls
const { httpMonitors } = await client.monitor.v1.MonitorService.listMonitors(
{},
);Use the default openstatus client and pass headers on each call.
import { openstatus } from "@openstatus/sdk-node";
const headers = {
"x-openstatus-key": process.env.OPENSTATUS_API_KEY,
};
await openstatus.monitor.v1.MonitorService.listMonitors({}, { headers });| Variable | Description | Default |
|---|---|---|
OPENSTATUS_API_KEY |
Your OpenStatus API key | Required for authenticated calls |
OPENSTATUS_API_URL |
Custom API endpoint | https://api.openstatus.dev/rpc |
Get your API key from the OpenStatus dashboard.
For self-hosted instances or staging environments:
import { createOpenStatusClient } from "@openstatus/sdk-node";
const client = createOpenStatusClient({
apiKey: process.env.OPENSTATUS_API_KEY,
baseUrl: "https://api.staging.example.com/rpc",
});The baseUrl option takes precedence over the OPENSTATUS_API_URL environment
variable.