Usage
Billing
API Keys
Copy your new key — it will not be shown again.
Create new API key
AI
Weather
Base URL
https://deldownweather6856e2f4-backend.functions.fnc.fr-par.scw.cloud
Authentication
Requires
weather scope. Pass key in Authorization header.Authorization: Bearer dk_your_key_here
GET/v1/weather
Full forecast — current, hourly (48h), daily (7d).
Params:
lat, lon, units (metric / imperial)GET /v1/weather?lat=52.52&lon=13.405
GET/v1/weather/current
Current conditions only.
GET /v1/weather/current?lat=48.85&lon=2.35
GET/v1/weather/hourly
Hourly forecast for the next 48 hours.
GET /v1/weather/hourly?lat=51.5&lon=-0.12
GET/v1/weather/daily
Daily forecast for the next 7 days.
GET /v1/weather/daily?lat=40.71&lon=-74.01
GET/v1/radar
Latest precipitation radar image as PNG.
GET /v1/radar?lat=52.52&lon=13.405
Documentation
Weather API
Base URL
https://deldownweather6856e2f4-backend.functions.fnc.fr-par.scw.cloud
Authentication
Requires
weather scope. Pass key in Authorization header.Authorization: Bearer dk_your_key_here
GET/v1/weather
Full forecast — current, hourly (48h), daily (7d).
Params:
lat, lon, units (metric / imperial)GET /v1/weather?lat=52.52&lon=13.405
GET/v1/weather/current
Current conditions only.
GET /v1/weather/current?lat=48.85&lon=2.35
GET/v1/weather/hourly
Hourly forecast for the next 48 hours.
GET /v1/weather/hourly?lat=51.5&lon=-0.12
GET/v1/weather/daily
Daily forecast for the next 7 days.
GET /v1/weather/daily?lat=40.71&lon=-74.01
GET/v1/radar
Latest precipitation radar image as PNG.
GET /v1/radar?lat=52.52&lon=13.405
AI API
Base URL
https://developers.deldown.de
Authentication
Requires
ai scope. OpenAI-compatible — just swap baseURL in any SDK.Authorization: Bearer dk_your_ai_key_here
Models
timur-5.1-turboUltra-fasttimur-5.1Balancedtimur-5.1-codeCode generationtimur-5.1-ultraDeep reasoningGET/v1/models
List all models with pricing. No auth required.
GET https://developers.deldown.de/v1/models
POST/v1/chat/completions
OpenAI-compatible chat completions. Streaming supported.
{
"model": "timur-5.1",
"messages": [{ "role": "user", "content": "Hello!" }],
"stream": true
}
Example — OpenAI SDK
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://developers.deldown.de/v1",
apiKey: "dk_your_ai_key_here",
});
const res = await client.chat.completions.create({
model: "timur-5.1-code",
messages: [{ role: "user", content: "Write a sort function" }],
});
Weather
AI