Authentication

API Keys Overview

Learn how to authenticate with the Skytells API — generate API keys, make authenticated requests, and manage your credentials securely.

Authentication & Setup

Before you can make requests to the Skytells API, you need to set up authentication. This section walks you through everything — from generating your first API key to making your first authenticated call.

All requests to the Skytells API are authenticated via an x-api-key header. No other authentication method is supported.


In This Section


Quick Start

If you're in a hurry, here's how to get authenticated in under a minute:

Get your API key

Go to Dashboard → API Keys and click Generate New API Key. Copy it immediately.

Set your environment variable

export SKYTELLS_API_KEY="sk-your-api-key-here"

Make your first request

curl https://api.skytells.ai/v1/models \
  -H "x-api-key: $SKYTELLS_API_KEY"

For full details on each step, explore the pages above.

How is this guide?

On this page