Getting Started

Introduction

Welcome to the CatLove AI API. Learn about our platform and how to get started building powerful AI applications.

What is CatLove AI?

CatLove AI provides a unified API gateway for accessing multiple AI models including OpenAI GPT, Claude, Gemini, and more. With a single API key, you can access 50+ AI models for chat, image generation, audio, and embeddings.

Our platform is built on top of LiteLLM, providing enterprise-grade reliability, automatic fallbacks, and comprehensive usage tracking.

Key Features

  • Unified API - Access multiple AI providers through a single, consistent interface
  • Auto Fallbacks - Automatic switching between models for high availability
  • Cost Tracking - Real-time usage monitoring and budget management
  • Rate Limiting - Built-in rate limiting and quota management
  • OpenAI Compatible - Drop-in replacement for OpenAI API

Quick Example

Here's a simple example of how to make your first API call:

curl https://api.catlove.cc/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o-mini",
    "messages": [
      {"role": "user", "content": "Hello, world!"}
    ]
  }'

Supported Models

We support a wide range of AI models from leading providers:

GPT-4o
OpenAI
GPT-4o-mini
OpenAI
Claude 3.5 Sonnet
Anthropic
Claude 3 Opus
Anthropic
Gemini Pro
Google
DeepSeek Chat
DeepSeek

View the full list of supported models on the Models page.

Ready to get started?

Head over to the Quick Start guide to create your API key and make your first request.