No calls. 14 days. Tested onboarding, not just docs.
Async by email. Works with any IT product as long as docs/repo exist.
Delivered as Google Doc or GitHub PR.
If your Quickstart doesn't work exactly as documented, we'll fix the onboarding path at no cost.
A technical user on a clean machine can follow the documented Install + Quickstart steps and reach the Quickstart's stated "first success" outcome (the expected output at the end of the Quickstart).
This guarantee applies when:
We will repair the onboarding path until it works, covering:
This is not a full documentation rewrite. Anything outside the onboarding path is logged for Phase 2 and handled separately.
One revision round is included.
New pages, major scope changes, or substantial expansion beyond the onboarding path are priced separately.
Optional rush: +$300 (7 days)
1 revision round included. If scope changes, either timeline extends or price increases.
Get started in 5 minutes (tested)
Goal: Return a real user list from your account.
1. Install
npm install yourapi-sdk
2. Create an API key (2 clicks)
Settings → API Keys → Create New
3. Run the first request (copy-paste)
const api = new YourAPI({ key: process.env.YOURAPI_KEY });
const result = await api.users.list();
console.log(result.data[0]);
Expected output: You should see at least 1 user object.
If you get 401: Your key is missing scopes: users:read → recreate the key.
Tested on: Node 20 (macOS + Ubuntu)
Time to first success: 4:30 Installation fails on Windows
Symptom: npm install fails with EACCES error
Cause: Node modules require write permissions
Fix:
1. Run CMD as Administrator 2. npm install --prefix %APPDATA%\npm yourapi-sdk 3. Add %APPDATA%\npm to PATH
FAQ
Q: Do I need a credit card for trial?
A: No. Trial runs 14 days, no card required.
Q: What happens after trial ends?
A: API stops responding. Data preserved 30 days.