English
Get started with PipeLLM in 3 steps
curl https://api.pipellm.com/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "model": "gpt-4o", "messages": [{"role": "user", "content": "Hello!"}] }'
curl https://api.pipellm.com/v1/messages \ -H "Content-Type: application/json" \ -H "x-api-key: YOUR_API_KEY" \ -H "anthropic-version: 2023-06-01" \ -d '{ "model": "claude-sonnet-4-5-latest", "max_tokens": 1024, "messages": [{"role": "user", "content": "Hello!"}] }'
curl "https://api.pipellm.com/v1beta/models/gemini-3-flash-preview:generateContent?key=YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "contents": [{"parts": [{"text": "Hello!"}]}] }'
Was this page helpful?