AIMLAPI · JSON Structure

Aimlapi Model Info Structure

Information about an available AI model

Type: object Properties: 4
Artificial IntelligenceMachine LearningAI ModelsLLMImage GenerationVideo GenerationSpeechEmbeddingsAPI GatewayDeveloper Tools

ModelInfo is a JSON Structure definition published by AIMLAPI, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id object created owned_by

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aimlapi/refs/heads/main/json-structure/aimlapi-model-info-structure.json",
  "name": "ModelInfo",
  "description": "Information about an available AI model",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Model identifier",
      "example": "gpt-4o"
    },
    "object": {
      "type": "string",
      "description": "Object type",
      "example": "model"
    },
    "created": {
      "type": "int32",
      "description": "Unix timestamp of model creation",
      "example": 1718153645
    },
    "owned_by": {
      "type": "string",
      "description": "Organization that owns/created the model",
      "example": "openai"
    }
  }
}