Welcome to Fine API

Fine API provides a unified interface to access various AI models including OpenAI GPT, Anthropic Claude, and more.

Base URL

https://api.example.com

Features

Quick Start

  1. Get your API key from the dashboard
  2. Set up authentication
  3. Make your first API call
curl -X POST https://api.example.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'