Getting Started
Prerequisites
API Key — Obtain your API key from the Developer Portal under Settings > API Keys
Add more prerequisites as needed
Installation
Step 1: Install the SDK
npm install @your-org/sdk
Step 2: Configure your client
import { Client } from '@your-org/sdk';
const client = new Client({
apiKey: process.env.API_KEY,
});
Your First API Call
Make your first request to verify everything is working:
curl -X GET https://api.example.com/v1/health \
-H "Authorization: Bearer YOUR_API_KEY"
Expected Response:
{
"status": "ok"
}
Next Steps
Learn about API key and OAuth2 authentication.
Explore all available endpoints.
