10-Minute Quick Start with LLM API

From zero to hero, quickly master how to call ChatGPT, Claude, FLUX and other AI model APIs

Video Tutorial

5-minute video tutorial: From registration to your first API call

Four Steps to Get Started

01

Register Account

Visit the platform to register an account and get API access

  • Register with email or phone number
  • Complete email verification
  • Login to the console
02

Create API Key

Create your API key in the console

  • Go to API Keys management page
  • Click 'Create New Key'
  • Set key name and permissions
  • Securely save the generated key
03

Choose Model

Select the appropriate AI model based on your needs

  • ChatGPT (GPT-4o, GPT-3.5)
  • Claude (Claude 3.5 Sonnet)
  • Text-to-Image (FLUX, Stable Diffusion)
  • View model pricing and performance comparison
04

Send Request

Call model interface using API Key

  • Configure request headers and authentication
  • Build request body parameters
  • Send HTTP request
  • Process response results

Code Examples

Basic Call Example

curl https://api.example.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-4o",
    "messages": [
      {
        "role": "user",
        "content": "Hello, please introduce yourself"
      }
    ],
    "temperature": 0.7
  }'

Platform Advantages

🔄

Unified Interface Standard

Compatible with OpenAI format, switch models without modifying code

🤖

Multi-Model Support

Support 50+ mainstream AI models, including GPT, Claude, Gemini, etc.

âš¡

High Availability

99.9% SLA guarantee, automatic failover and load balancing

💰

Cost Optimization

Intelligent routing selects optimal models to reduce API calling costs

💨

Streaming Output

Support SSE streaming response, get generated content in real-time

📚

Complete Documentation

Detailed API documentation and multi-language SDK examples

Having issues? Check FAQ or contact technical support