AIMLAPI · JSON Structure

Aimlapi Api Key Structure

An AIMLAPI API key for authentication

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

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

Properties

id name key created_at status

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-api-key-structure.json",
  "name": "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",
      "description": "Creation timestamp",
      "example": "2025-03-15T14:30:00Z"
    },
    "status": {
      "type": "string",
      "description": "Key status: active, disabled",
      "example": "active"
    }
  }
}