Skip to main content

1. Get Your API Key

  1. Sign up at console.pipellm.com
  2. Top up your balance
  3. Create an API key

2. Make Your First Request

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!"}]
  }'

3. Explore More