Unlock exclusive introductory pricing for the newly launched Gemini 3.5 Flash.
O

GPT-4o mini

Đầu vào:$0.12/M
Đầu ra:$0.48/M
Ngày phát hành:Oct 1, 2025

GPT-4o mini là một mô hình trí tuệ nhân tạo do OpenAI cung cấp.

Mới
Sử dụng thương mại

Technical Specifications of gpt-4o-mini

AttributeDetails
Model IDgpt-4o-mini
ProviderOpenAI
Model typeArtificial intelligence model
Primary useNatural language understanding and generation
API accessAvailable through CometAPI
Integration styleStandard REST API requests
Input formatText
Output formatText

What is gpt-4o-mini?

gpt-4o-mini is an artificial intelligence model provided by OpenAI. It is designed to process natural language inputs and generate useful text outputs for a wide range of applications, including chat, content generation, summarization, classification, and automation workflows.

Through CometAPI, developers can access gpt-4o-mini using a unified API format, making it easier to integrate the model into applications without managing provider-specific complexity. This helps teams prototype quickly and deploy AI features with a consistent developer experience.

Main features of gpt-4o-mini

  • Natural language processing: Understands and generates human-like text for conversational and task-oriented use cases.
  • Versatile application support: Can be used for summarization, question answering, content drafting, rewriting, and workflow automation.
  • Developer-friendly access: Available through CometAPI with a consistent API interface that simplifies integration.
  • Fast integration workflow: Supports straightforward request and response patterns for rapid development.
  • Scalable deployment: Suitable for embedding into products, internal tools, and automated services.

How to access and integrate gpt-4o-mini

Step 1: Sign Up for API Key

To access gpt-4o-mini, first register on the CometAPI platform and generate your API key from the dashboard. This key is required to authenticate all API requests and should be stored securely in your application environment.

Step 2: Send Requests to gpt-4o-mini API

After obtaining your API key, send a POST request to the CometAPI chat completions endpoint and specify gpt-4o-mini as the model.

curl https://api.cometapi.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_COMETAPI_KEY" \
  -d '{
    "model": "gpt-4o-mini",
    "messages": [
      {
        "role": "user",
        "content": "Write a short introduction to AI."
      }
    ]
  }'

Step 3: Retrieve and Verify Results

Once the request is processed, the API returns a structured response containing the model output. You can parse the returned content, validate it against your application requirements, and then display or store the result as needed.

Giá cả cho GPT-4o mini

Khám phá mức giá cạnh tranh cho GPT-4o mini, được thiết kế để phù hợp với nhiều ngân sách và nhu cầu sử dụng khác nhau. Các gói linh hoạt của chúng tôi đảm bảo bạn chỉ trả tiền cho những gì bạn sử dụng, giúp dễ dàng mở rộng quy mô khi yêu cầu của bạn tăng lên. Khám phá cách GPT-4o mini có thể nâng cao các dự án của bạn trong khi vẫn kiểm soát được chi phí.

ModelComet Price (USD / M Tokens)Official Price (USD / M Tokens)Discount
gpt-4o-mini
Đầu vào:$0.12/M
Đầu ra:$0.48/M
Đầu vào:$0.15/M
Đầu ra:$0.6/M
-20%
gpt-4o-mini-2024-07-18
Đầu vào:$0.12/M
Đầu ra:$0.48/M
Đầu vào:$0.15/M
Đầu ra:$0.6/M
-20%
gpt-4o-mini-audio-preview
Đầu vào:$0.12/M
Đầu ra:$0.48/M
Đầu vào:$0.15/M
Đầu ra:$0.6/M
-20%
gpt-4o-mini-audio-preview-2024-12-17
Đầu vào:$0.12/M
Đầu ra:$0.48/M
Đầu vào:$0.15/M
Đầu ra:$0.6/M
-20%
gpt-4o-mini-realtime-preview
Đầu vào:$0.48/M
Đầu ra:$1.92/M
Đầu vào:$0.6/M
Đầu ra:$2.4/M
-20%
gpt-4o-mini-realtime-preview-2024-12-17
Đầu vào:$0.48/M
Đầu ra:$1.92/M
Đầu vào:$0.6/M
Đầu ra:$2.4/M
-20%
gpt-4o-mini-transcribe
Đầu vào:$1/M
Đầu ra:$4/M
Đầu vào:$1.25/M
Đầu ra:$5/M
-20%
gpt-4o-mini-tts
Đầu vào:$9.6/M
Đầu ra:$9.6/M
Đầu vào:$12/M
Đầu ra:$12/M
-20%

Mã mẫu và API cho GPT-4o mini

Truy cập mã mẫu toàn diện và tài nguyên API cho GPT-4o mini để tối ưu hóa quy trình tích hợp của bạn. Tài liệu chi tiết của chúng tôi cung cấp hướng dẫn từng bước, giúp bạn khai thác toàn bộ tiềm năng của GPT-4o mini trong các dự án của mình.

curl https://api.cometapi.com/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -d '{
    "model": "gpt-4o-mini",
    "input": "Tell me a three sentence bedtime story about a unicorn."
  }'

cURL Code Example

curl https://api.cometapi.com/v1/responses \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $COMETAPI_KEY" \
  -d '{
    "model": "gpt-4o-mini",
    "input": "Tell me a three sentence bedtime story about a unicorn."
  }'

Python Code Example

from openai import OpenAI
import os

# Get your CometAPI key from https://api.cometapi.com/console/token, and paste it here
COMETAPI_KEY = os.environ.get("COMETAPI_KEY") or "<YOUR_COMETAPI_KEY>"
BASE_URL = "https://api.cometapi.com/v1"

client = OpenAI(base_url=BASE_URL, api_key=COMETAPI_KEY)
response = client.responses.create(
    model="gpt-4o-mini", input="Tell me a three sentence bedtime story about a unicorn."
)

print(response)

JavaScript Code Example

import OpenAI from "openai";

// Get your CometAPI key from https://api.cometapi.com/console/token, and paste it here
const api_key = process.env.COMETAPI_KEY;
const base_url = "https://api.cometapi.com/v1";

const openai = new OpenAI({
  apiKey: api_key,
  baseURL: base_url,
});

const response = await openai.responses.create({
  model: "gpt-4o-mini",
  input: "Tell me a three sentence bedtime story about a unicorn.",
});

console.log(response);

Các phiên bản của GPT-4o mini

Lý do GPT-4o mini có nhiều snapshot có thể bao gồm các yếu tố tiềm năng như: sự thay đổi đầu ra sau các bản cập nhật cần các snapshot cũ để đảm bảo tính nhất quán, cung cấp cho nhà phát triển thời gian chuyển tiếp để thích ứng và di chuyển, cũng như các snapshot khác nhau tương ứng với các endpoint toàn cầu hoặc khu vực nhằm tối ưu hóa trải nghiệm người dùng. Để biết chi tiết về sự khác biệt giữa các phiên bản, vui lòng tham khảo tài liệu chính thức.

Version
gpt-4o-mini
gpt-4o-mini-2024-07-18
gpt-4o-mini-audio-preview
gpt-4o-mini-audio-preview-2024-12-17
gpt-4o-mini-realtime-preview
gpt-4o-mini-realtime-preview-2024-12-17
gpt-4o-mini-transcribe
gpt-4o-mini-tts