Your Profile

Email

{{ profile.email }}

Username

{{ profile.username }}

Account Created

{{ formatDate(profile.created_at) }}

Current Plan

Free

Your API Tokens

You don't have any API tokens yet. Create one to get started.
Token Description Created Last Used Expires Status Actions
{{ token.token.substring(0, 12) }}... {{ token.description }} {{ formatDate(token.created_at) }} {{ token.last_used_at ? formatDate(token.last_used_at) : 'Never' }} {{ token.expires_at ? formatDate(token.expires_at) : 'Never' }} Active Inactive

API Connection Guide

Connect to our OpenAI-compatible API endpoint using your favorite OpenAI SDK or directly via HTTP requests.

API Endpoints

Base URL

OpenAI-Compatible URL

Authentication

Use your API token with the following format in your requests:

Authorization: Bearer YOUR_API_TOKEN

Example cURL Request

curl https://ai.krootless.workers.dev/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Usage Limits

  • 1000 requests per day with the Free plan
  • Access to GPT-4o model
Thank you for your support! ❤️