Skip to main content

Authentication

All API requests to Jabrod require authentication using an API key.

Getting an API Key

1

Sign up or Log in

2

Navigate to API Keys

Click on your profile > API Keys
3

Create a new key

Click Create Key, give it a name, and copy the key
Your API key is only shown once. Store it securely!

Using Your API Key

With the SDK

import { JabrodClient } from 'jabrod';

const jabrod = new JabrodClient({
  apiKey: 'jb_your_api_key_here'
});

With REST API

Include your API key in the Authorization header:
curl -X GET "https://cloud.jabrod.com/api/kb" \
  -H "Authorization: Bearer jb_your_api_key_here"

API Key Format

Jabrod API keys follow this format:
PrefixDescription
jb_Standard API key

Security Best Practices

API keys should only be used in server-side code. Never include them in frontend JavaScript.
Store API keys in environment variables, not in your codebase.
Periodically create new keys and revoke old ones.
Use different API keys for development, staging, and production.

Rate Limits

PlanRequests/minuteRequests/day
Free601,000
Pro30050,000
EnterpriseCustomCustom