Beginner15 minModule 1 of 6

Platform Tour

Explore the Skytells Console, Dashboard, and API — your command center for building AI-powered products.

What you'll be able to do after this module

By the end of this short tour you'll know exactly where to go to get an API key, test any model without code, and understand how the REST API is structured — so nothing slows you down in Module 2 (Models & Billing).


The three interfaces

Skytells gives you three entry points depending on whether you're exploring, managing, or building:

x-api-key x-api-key You Dashboard / Manage Keys x-api-key Playground / Console API Your App Your Edge System Edge API Results
InterfaceURLBest for
Consoleskytells.ai/consoleTest any model interactively, no code required
Dashboardskytells.ai/dashboardAPI keys, usage analytics, billing
REST APIapi.skytells.ai/v1Everything your app needs
Edge APIedge.skytells.ai/v1Ultra-low latency (Business/Enterprise)

Step 1: Create your account and get an API key

Create your account

Go to skytells.ai and sign up. A free account gives you enough quota to work through this entire course.

Open the API Keys page

Navigate to Dashboard → API Keys. Click "Generate New API Key" and give it a name like dev-learning.

Save your key immediately

Copy the key — it starts with sk-. You can only see it once. Paste it into a .env file or your terminal:

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

Step 2: Try your first model in the Console

Before writing a single line of code, spend 5 minutes in the Console to understand what models can do.

Select a model

Choose TrueFusion Pro from the model selector — this is Skytells' flagship image model.

Write a prompt and generate

Try: A photorealistic mountain lake at sunrise, golden light, reflections

Click Generate and watch the output. This same call — the exact same JSON — is what your code will send to the API.

Inspect the response

Scroll down to the Response panel. You'll see a JSON object with an id, status, and output field. This is the prediction object — the core data structure of the entire API.


The API structure

All programmatic access uses one consistent pattern across every model:

POST https://api.skytells.ai/v1/predictions     → create a prediction
GET  https://api.skytells.ai/v1/predictions/:id  → get status + output
GET  https://api.skytells.ai/v1/models           → list all models
GET  https://api.skytells.ai/v1/models/:id       → get model details

The API is OpenAI-compatible. If you already use OpenAI's API, you can often switch to Skytells by changing two things: the base URL and the API key.


Plans at a glance

PlanStandard rate limitEdge APIWho it's for
Free60 req/minLearning, prototyping
Pro600 req/minSolo developers, small products
BusinessCustomTeams, higher volume
EnterpriseCustomLarge-scale production

What you now understand

ConceptWhere
Create and manage API keysDashboard → API Keys
Test any model without codeConsole
Production API callsapi.skytells.ai/v1
Low-latency edge (Business+)Edge APIedge.skytells.ai/v1
View usage and billingDashboard
Generate images, video, audioPrediction APIPOST /v1/predictions
LLM text generationInference APIPOST /v1/chat/completions

Up next: you'll use your API key to make your first real prediction — generating an image from a terminal, in Python, and in TypeScript.

On this page