Skip to content

Introduction

AIShop24H provides unified API access to leading Large Language Models through a single endpoint. With one API key, you can integrate Claude, Gemini, and other top-tier models into your applications—no need to manage multiple provider accounts or credentials.

  • Single Integration: One API endpoint for all supported models
  • OpenAI-Compatible: Drop-in replacement for existing OpenAI integrations
  • Competitive Pricing: Access premium models at lower costs
  • Simplified Billing: One account, one invoice
ModelModel IDBest For
Claude Opus 4.6anthropic/claude-opus-4.6Latest flagship model, superior capabilities
Claude Opus 4.5 Thinkinganthropic/claude-opus-4.5-thinkingComplex reasoning, deep analysis
Claude Sonnet 4.6anthropic/claude-sonnet-4.6Latest balanced model, enhanced performance
Claude Sonnet 4.5anthropic/claude-sonnet-4.5Balanced performance and cost
Claude Sonnet 4.5 Thinkinganthropic/claude-sonnet-4.5-thinkingReasoning with cost efficiency
Claude Haiku 4.5anthropic/claude-haiku-4.5Fast responses, cost-effective
ModelModel IDBest For
Gemini 3 Flash Previewgoogle/gemini-3-flash-previewFast responses, high throughput
Gemini 3 Pro Previewgoogle/gemini-3-pro-previewAdvanced reasoning tasks
Nano Banana Progoogle/gemini-3-pro-image-previewImage generation and editing
https://aishop24h.com/v1

Include your API key in all requests:

Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Terminal window
curl https://aishop24h.com/v1/chat/completions \
-H "Authorization: Bearer $AISHOP24H_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-sonnet-4.5",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'
Terminal window
curl https://aishop24h.com/v1/models \
-H "Authorization: Bearer $AISHOP24H_API_KEY"
  1. Create an account at aishop24h.com
  2. Generate an API key from your Dashboard
  3. Integrate using the guides below