Skip to main content

Overview

All API requests require authentication via Bearer token in the Authorization header.

Header Format

Authorization: Bearer your_api_key_here

Getting an API Key

  1. Sign up at buntime.sh/dashboard
  2. Navigate to API Keys
  3. Click “Create New Key”
  4. Copy and store securely

Example Request

curl https://api.buntime.sh/sessions/create \
  -H "Authorization: Bearer $BUNTIME_API_KEY" \
  -H "Content-Type: application/json"
See the complete Authentication Guide for best practices.