Skip to main content

Quick Start

Get started with PicoPapa API in 3 steps.

1. Get API Key

Register and obtain your API Key at the Console.

2. Choose Your Format

FormatBase URLSDK
OpenAIhttps://pico.5884.cn/openai/v1OpenAI SDK
Anthropichttps://pico.5884.cn/anthropicAnthropic SDK
Geminihttps://pico.5884.cn/geminiGoogle GenAI SDK
Directhttps://pico.5884.cn/v1Any HTTP client

3. Make Your First Request

curl -X POST https://pico.5884.cn/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3-flash",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'

Base URL

https://pico.5884.cn

All endpoints use HTTPS. Requests and responses are in JSON format.