API Keys

Manage your API keys to access Frost AI services.

Keep your API keys secure!

Never share your API keys publicly or commit them to version control. If you believe a key has been compromised, delete it immediately and create a new one.

Your API Keys

Loading API keys...

Quick Start Guide

1

Create an API Key

Click "Create New Key" and give it a descriptive name.

2

Copy Your Key

Copy your new API key immediately - you won't be able to see it again!

3

Use in Your Application

Add the key to your application's configuration or environment variables.

Example Usage

curl https://api.frostai.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gemini-2.0-flash-exp",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'