Authentication
All JamBase Data API requests require authentication using a Bearer token.
Getting an API Key
There are two ways get a JamBase Data API key:
- Start a free trial for immediate access
- Subscribe to a plan for production use
Manage your keys in your account dashboard.
Required Headers
All API requests must include two request headers:
AuthorizationBearer tokenUser-AgentYour app identifier
curl -X GET "https://api.data.jambase.com/v3/events" \-H "Authorization: Bearer YOUR_API_KEY" \-H "Accept: application/json" \-H "User-Agent: JamBaseData-Sandbox/1.0"
Keeping Your Key Secure
- Keep your API key secret — never expose it in client-side code, public repositories, or browser requests
- Use environment variables — store keys outside your codebase to prevent accidental exposure