AIMLAPI · Schema

ApiKey

An AIMLAPI API key for authentication

Artificial IntelligenceMachine LearningAI ModelsLLMImage GenerationVideo GenerationSpeechEmbeddingsAPI GatewayDeveloper Tools

Properties

Name Type Description
id string API key identifier
name string Human-readable key name
key string The API key value (only shown on creation)
created_at string Creation timestamp
status string Key status: active, disabled
View JSON Schema on GitHub

JSON Schema

aimlapi-api-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aimlapi/refs/heads/main/json-schema/aimlapi-api-key-schema.json",
  "title": "ApiKey",
  "description": "An AIMLAPI API key for authentication",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "API key identifier",
      "example": "key-abc123"
    },
    "name": {
      "type": "string",
      "description": "Human-readable key name",
      "example": "Production Key"
    },
    "key": {
      "type": "string",
      "description": "The API key value (only shown on creation)",
      "example": "aiml-sk-examplekey123"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp",
      "example": "2025-03-15T14:30:00Z"
    },
    "status": {
      "type": "string",
      "description": "Key status: active, disabled",
      "example": "active"
    }
  }
}