Getting Started
Welcome to the Limelight API documentation. This guide will help you get started with integrating the Limelight API into your application.
Overview​
The Limelight API is a RESTful API that allows you to programmatically access and manage your Limelight data. All requests and responses use JSON.
Base URL​
All API requests should be made to:
https://api.limelight.com/v1
Quick Start​
- Get your API key — Go to Settings > API Keys in your Limelight dashboard
- Make your first request — Try the health check endpoint:
curl https://api.limelight.com/v1/health
- Authenticate — Include your API key in subsequent requests:
curl -H "Authorization: Bearer llt_live_your_api_key" \
https://api.limelight.com/v1/health
Next Steps​
- Authentication — Learn how to authenticate your API requests
- API Reference — Explore all available endpoints