1. Model
AboAI
English
  • 中文
  • English
  • Home Page
  • AboAi-API
    • Model
      • Native OpenAI Format
        GET
      • Native Gemini Format
        GET
    • Chat
      • Native OpenAI Format
      • Native Gemini Format
      • Native Claude Format
      • Responses Request (openai)
    • Audio
      • Native OpenAI Format TTS
      • Native Gemini Format TTS
    • Images
      • Native OpenAI Format Image Generation
      • Native Gemini Format Image Generation
      • Native OpenAI Format Image Editing (JSON)
      • Native OpenAI Format Image Editing (Multipart)
    • Video
      • Seedance2.0 format
        • Create Video Generation Task
        • Query Video Generation Task Status
    • Vector
      • Embeddings
        • Create Embedding
    • Translation
      • Speech Translation
  • AI application
    • AboAI API Integration with Claude Code
    • AboAI API Integration with Cursor
    • AboAI API Integration with Codex-cli
    • AboAI API Integration with Codex Desktop
    • AboAI API Integration with Hermes Agent
  1. Model

Native OpenAI Format

GET
/v1/models
GET /v1/models

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.aboai.ai/v1/models' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "data": [
        {
            "id": "Claude-Opus-4.5",
            "object": "model",
            "created": "1769597110",
            "owned_by": "AWS"
        },
        {
            "id": "Claude-Sonnet-4.5",
            "object": "model",
            "created": "1769597110",
            "owned_by": "AWS"
        },
        {
            "id": "Claude-Haiku-4.5",
            "object": "model",
            "created": "1769597110",
            "owned_by": "AWS"
        },
        {
            "id": "Claude-Opus-4.6",
            "object": "model",
            "created": "1769597110",
            "owned_by": "AWS"
        },
        {
            "id": "GPT-5.2",
            "object": "model",
            "created": "1769597110",
            "owned_by": "Azure"
        },
        {
            "id": "GPT-5.2-Chat",
            "object": "model",
            "created": "1769597110",
            "owned_by": "Azure"
        },
        {
            "id": "gemini-2.5-pro",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gpt-image-1-mini",
            "object": "model",
            "created": "1769597110",
            "owned_by": "Azure"
        },
        {
            "id": "gemini-3-pro-image-preview",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "tts-hd",
            "object": "model",
            "created": "1769597110",
            "owned_by": "Azure"
        },
        {
            "id": "tts",
            "object": "model",
            "created": "1769597110",
            "owned_by": "Azure"
        },
        {
            "id": "gpt-image-1",
            "object": "model",
            "created": "1769597110",
            "owned_by": "Azure"
        },
        {
            "id": "gemini-2.5-flash",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gemini-3-pro-preview",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gemini-3-flash-preview",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gemini-2.5-flash-lite-preview-tts",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gemini-2.5-pro-tts",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gemini-2.5-flash-tts",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gemini-2.5-flash-image",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gemini-3.1-pro-preview",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "gemini-3.1-flash-image-preview",
            "object": "model",
            "created": "1769597110",
            "owned_by": "GCP"
        },
        {
            "id": "Chirp3-HD",
            "object": "model",
            "created": "0",
            "owned_by": "GCP"
        }
    ],
    "object": "list"
}
Modified at 2026-06-16 02:39:02
Previous
Home Page
Next
Native Gemini Format
Built with