Deep Conrad AI Developers

Production API access, key management, and implementation guides.

Quickstart

From account to first production request in minutes.

This path assumes you want the fastest route to a working integration without reading the full reference first.

Setup steps
Do these in order. The first request should work immediately after step 3.

1. Create a paid account plan with API access

Developer API access is available on Entry, Pro, and Power. Free accounts can view docs but cannot issue keys.

2. Open the developer console

Create a named API key for your environment. Raw key material is shown once after creation.

3. Call the chat completions endpoint

Send a server-side POST request with a bearer token and a messages array.

4. Observe usage and rotate keys

Track request volume from the console and revoke keys immediately if an environment is compromised.

Request example
Replace the token with the key shown in your console.
curl https://conrad-chatbot-230nuizxh-dan-projects-dc8caa0f.vercel.app/api/v1/chat/completions \
  -H "Authorization: Bearer YOUR_DEVELOPER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "conrad-balanced",
    "temperature": 0.3,
    "messages": [
      { "role": "user", "content": "Create a rollback plan for a failed feature release." }
    ]
  }'
Use server-side storage for keys. Do not embed developer keys in browser bundles, mobile apps, or public client code.