Setup

One line to install. One line to wrap. Your data appears in under 60 seconds.

1. Choose your language

2. Install

npm install reliably

3. Wrap your API clients

import { reliably } from 'reliably'

// Wrap any API client — that's it
const stripe = reliably.wrap(new Stripe(process.env.STRIPE_KEY))
const openai = reliably.wrap(new OpenAI({ apiKey: process.env.OPENAI_KEY }))

// Use them exactly as before
const charge = await stripe.charges.create({ amount: 2000, currency: 'usd' })

That's it. No signup required. No API key needed. Your telemetry data flows anonymously and your benchmarks will appear on the dashboard within 60 seconds.

4. Optional: claim your project

Sign up to get a personal dashboard comparing your latency against the global average. Your SDK auto-generates an anonymous project ID — you can link it to your account anytime.

import { Reliably } from 'reliably'
const r = new Reliably({ projectId: 'proj_your_id' })
const stripe = r.wrap(new Stripe(key))