Dev Docs
Contact Us
  • Introduction
    • About Lucid
    • Lucid Platform
  • Products
    • Video Personalization
      • Overview
      • Playback Integration
        • HTML5 Integration
        • Android/Fire TV Integration
        • Android Mobile Integration
      • API Reference
    • Recommendation
      • Overview
      • How To Guide
        • Import Data
        • Train the Model
        • Get Recommendations
      • Sample Workflows
        • NFT Recommendations
        • Video Recommendations
      • API Reference
    • Moderation
      • Overview
  • API Reference
    • Getting Started
      • Create an Account
      • API Keys
    • API Reference
      • Recommender API
      • Video Summarization API
  • Contact Us
    • Lucid Home
Powered by GitBook
On this page
  1. API Reference
  2. Getting Started

API Keys

To access the Lucid APIs, you will need an API key. Your organization's account may have one or more API keys associated with it. API keys may have different scoping or permissions associated with them; that is, some API keys may only work on a subset of endpoints depending on your account type and level of permission.

For help requesting or accessing an API key, please contact us directly.

The Lucid team will never ask you for your API key. If there is a problem with one, we will just issue you a new one. If someone is asking you for your key, please do not give it to them and report the matter to us.

API Keys

API keys are issued as random strings of characters. Authentication is done at the HTTP header level by applying your API key in the apikey field. For example, the following demonstrates how to send a sample request to a mock endpoint.

curl -X 'POST' \
  'https://<your-server>/v1/recommend/train' \
  -H 'accept: application/json' \
  -H 'apikey: [ENTER YOUR API KEY]' \
  -H 'Content-Type: application/json'
PreviousCreate an AccountNextAPI Reference

Last updated 2 years ago