Getting Started

Quickstart

Go from key creation to a successful request in under five minutes.

Five-minute flow

1
Create a Deep Conrad account
Sign in and create a project for your application.
2
Generate an API key
Use a secret key from the developer dashboard and keep it server-side.
3
Send your first request
Start with Conrad 4.0 and one user message.
Minimal request
Authorization: Bearer YOUR_API_KEY
curl https://api.deepconrad.com/v1/chat \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -d '{
    "model": "conrad-4.0",
    "messages": [
      {"role": "user", "content": "Write a concise welcome message for new users."}
    ]
  }'