HyprLab Docs
  • GETTING STARTED
    • Introduction
    • Authentication
    • Making requests
  • BROWSE MODELS
    • Model List
      • OpenAI
        • AUDIO
        • CHAT
        • EMBEDDINGS
        • IMAGE
        • TEXT
        • MODERATION
      • Anthropic
      • Google
        • AUDIO
        • CHAT
          • OpenAI-Format
          • Google-Format
        • IMAGE
        • VIDEO
      • DeepSeek
      • x.AI
        • CHAT
        • IMAGE
      • Cohere
      • Meta AI
      • Qwen
      • Microsoft
      • Mistral AI
      • Perplexity AI
      • Cognitive Computations
      • Nvidia
      • Nous Research
      • MiniMax
      • Amazon
      • AI21-Labs
      • Reka AI
      • Black Forest Labs
      • Stability AI
        • Stable Diffusion 3.5
        • Stable Diffusion 3 - Ultra
        • Stable Diffusion 3 - Core
        • Stable Diffusion 3
        • Stable Diffusion XL 1.0
      • Recraft AI
      • Ideogram AI
      • Kling AI
      • Luma AI
      • Free-GPT
  • Playground
    • HyprLab Studio
    • HyprLab Chat
    • HyprLab - SillyTavern
  • INTEGRATION
    • Basic Setup
      • SillyTavern
      • Janitor AI
      • Risu AI
      • Agnai Chat
      • TypingMind
      • ChatWaifu - Steam
Powered by GitBook
On this page
  1. BROWSE MODELS
  2. Model List

Amazon

Available Amazon Models in HyprLab: A Detailed List and Pricing Guide.

Base-Path:

https://api.hyprlab.io/v1

Chat-Completions Path:

https://api.hyprlab.io/v1/chat/completions

Making Request:

curl https://api.hyprlab.io/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HYPRLAB_API_KEY" \
  -d '{
    "model": "nova-pro",
    "messages": [
      {
        "role": "system",
        "content": "You are a helpful assistant."
      },
      {
        "role": "user",
        "content": "Say this is a test!"
      }
    ]
  }'
curl https://api.hyprlab.io/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HYPRLAB_API_KEY" \
  -d '{
    "model": "nova-pro",
    "messages": [
      {
        "role": "user",
        "content": [
          {
            "type": "text",
            "text": "What'\''s in this image?"
          },
          {
            "type": "image_url",
            "image_url": {
              "url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg"
            }
          }
        ]
      }
    ],
    "max_tokens": 300
  }'

💬 Chat Models

PreviousMiniMaxNextAI21-Labs

Last updated 5 months ago

Model Name:
Discount:
Input:
Output:
Context:
Moderation:
Capabilities:
Model Name:
Discount:
Input:
Output:
Context:
Moderation:
Capabilities:
Model Name:
Discount:
Input:
Output:
Context:
Moderation:
Capabilities:
  • nova-pro

  • 20% off

  • $0.64 / 1M Tokens

  • $2.56 / 1M Tokens

  • 300,000

  • Filtered

  • Vision Supported

  • nova-lite

  • 20% off

  • $0.048 / 1M Tokens

  • $0.192 / 1M Tokens

  • 300,000

  • Filtered

  • Vision Supported

  • nova-micro

  • 20% off

  • $0.028 / 1M Tokens

  • $0.112 / 1M Tokens

  • 128,000

  • Filtered

  • Chat Only

Page cover image