GTP Image 1.5

Model Information

Display Name: GTP Image 1.5

API Model ID: openai/gpt-image-1.5

Category: Text To Image

Description: GPT Image 1.5 is OpenAI's advanced image generation model, capable of creating stunning, photorealistic images from text descriptions with exceptional quality and detail. **Key Features:** - Photorealistic image generation with high fidelity - Advanced understanding of complex prompts and compositions - Support for multiple artistic styles and creative directions - Flexible output sizes and quality levels **Capabilities:** - Natural language understanding for detailed scene composition - Accurate rendering of text within images - Consistent style application across multiple generations - Fine-grained control over image attributes **Output Options:** - **Sizes:** 1024x1024, 1024x1792, 1792x1024 - **Quality:** Low, Medium, High - **Style:** Vivid (dramatic) or Natural (realistic) **Use Cases:** - Marketing and advertising visuals - Product concept visualization - Creative artwork and illustrations - Social media content creation - Rapid prototyping for design projects **Performance:** Optimized for both speed and quality, delivering professional-grade results suitable for commercial applications. **Pricing:** Varies by quality level and output size. Higher quality and larger dimensions increase generation cost.

How to Use This Model

To use GTP Image 1.5 via the HInow.ai API, use the model ID: openai/gpt-image-1.5

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "openai/gpt-image-1.5",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images/generations
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "openai/gpt-image-1.5",
  "prompt": "Your image description here"
}
              

Pricing

  • total: $0.02

Available Parameters

  • quality: The quality level of the image. Higher quality takes longer but produces better results. (Options: low, medium, high)
  • aspect_ratio: (Options: 1:1, 3:2, 2:3)

Quick Reference

To use this model, set: "model": "openai/gpt-image-1.5"

Featured: Yes

Documentation: https://hinow.ai/models/openai/gpt-image-1.5

API Endpoint: https://api.hinow.ai/v1

Back to Models
GTP Image 1.5

GTP Image 1.5

Featured

openai/gpt-image-1.5

$0.020
per image

About

GPT Image 1.5 is OpenAI's advanced image generation model, capable of creating stunning, photorealistic images from text descriptions with exceptional quality and detail.

Key Features:

  • Photorealistic image generation with high fidelity
  • Advanced understanding of complex prompts and compositions
  • Support for multiple artistic styles and creative directions
  • Flexible output sizes and quality levels

Capabilities:

  • Natural language understanding for detailed scene composition
  • Accurate rendering of text within images
  • Consistent style application across multiple generations
  • Fine-grained control over image attributes

Output Options:

  • Sizes: 1024x1024, 1024x1792, 1792x1024
  • Quality: Low, Medium, High
  • Style: Vivid (dramatic) or Natural (realistic)

Use Cases:

  • Marketing and advertising visuals
  • Product concept visualization
  • Creative artwork and illustrations
  • Social media content creation
  • Rapid prototyping for design projects

Performance:

Optimized for both speed and quality, delivering professional-grade results suitable for commercial applications.

Pricing:

Varies by quality level and output size. Higher quality and larger dimensions increase generation cost.

Capabilities

Text To Image

Parameters

quality

The quality level of the image. Higher quality takes longer but produces better results.

lowmediumhigh
aspect_ratio
1:13:22:3

Code Examples

curl -X POST https://api.hinow.ai/v1/images \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "openai/gpt-image-1.5",
    "prompt": "A beautiful sunset over mountains",
    "parameters": {
      "quality": "low",
      "aspect_ratio": "1:1"
    }
  }'