{
  "success": 200,
  "name": "XVoid-GPT",
  "author": "Ashar",
  "version": "1.0.0",
  "description": "Simple AI API powered by Google Gemini",
  "endpoint": {
    "chat": "https://xvoid-gpt.zone.id/x-ai"
  },
  "methods": {
    "GET": {
      "url": "https://xvoid-gpt.zone.id/x-ai?q=Haiii%20Void-GPT%20apa%20kabar",
      "parameter": {
        "q": {
          "type": "string",
          "required": true,
          "description": "Pertanyaan atau pesan untuk AI"
        }
      },
      "example": "https://xvoid-gpt.zone.id/x-ai?q=Halo%20Void-GPT"
    },
    "POST": {
      "url": "https://xvoid-gpt.zone.id/x-ai",
      "headers": {
        "Content-Type": "application/json"
      },
      "body": {
        "q": "Halo Void-GPT"
      },
      "example": {
        "curl": "curl -X POST \"https://xvoid-gpt.zone.id/x-ai\" -H \"Content-Type: application/json\" -d \"{\\\"q\\\":\\\"Halo Void-GPT\\\"}\""
      }
    }
  },
  "response": {
    "success": 200,
    "author": "Ashar",
    "model": "XVoid-GPT",
    "response": "Jawaban dari AI",
    "intruksi": [
      {
        "type": "judul",
        "text": "Contoh judul"
      },
      {
        "type": "subjudul",
        "text": "Contoh subjudul"
      },
      {
        "type": "bold",
        "text": "Tulisan tebal"
      },
      {
        "type": "italic",
        "text": "Tulisan miring"
      },
      {
        "type": "coret",
        "text": "Tulisan dicoret"
      },
      {
        "type": "code",
        "text": "console.log()"
      },
      {
        "type": "code_block",
        "language": "js",
        "text": "console.log('Hello')"
      }
    ]
  },
  "formatting": {
    "judul": "# Judul",
    "subjudul": "## Subjudul",
    "bold": "**teks**",
    "italic": "*teks*",
    "coret": "~~teks~~",
    "code": "`kode`",
    "code_block": "```js\\nconsole.log('Hello')\\n```"
  }
}