Fleet Management
AI & Models
Advanced

ON THIS PAGE

  • Create an API key
  • Use a key from your backend
  • Related docs
  • FAQ

API Keys

Use this page when you need to create a Luxonis Hub API key and use it safely from your own backend or server-side tooling. Hub API keys are backend-only secrets with full team access.

Create an API key

You can create API keys in the Luxonis Hub web UI:
  1. Navigate to Team Settings
  2. Click the Create API Key button
Team Settings page in Luxonis Hub showing the API keys area
Create and manage API keys from Team Settings in Luxonis Hub.

Use a key from your backend

Use your API key by including it in the Authorization header with the Bearer prefix when your backend calls Luxonis Hub APIs.The most common pattern is:
  1. Your customer-facing app authenticates to your own backend.
  2. Your backend stores the Hub API key securely.
  3. Your backend calls Hub APIs on behalf of your product workflow.
  4. Your frontend receives only the derived payload it needs.
Command Line
1curl -X POST https://api.cloud.luxonis.com/graphql \
2  -H "Authorization: Bearer tapi._R06IFhNCIZ_Sgj505i9Ow.ca_8I5JbY...r-coSA" \
3  -H "Content-Type: application/json" \
4  -d '{
5    "query": "query { team { devices { nodes { id name } } } }"
6  }'
For GraphQL control-plane requests, use the public team { ... } surface described in About GraphQL.

Related docs

FAQ