{
  "name": "Parachi Telegram API",
  "version": "1.0.0",
  "docs_url": "https://tgparachi.milibots.ir",
  "auth_required": true,
  "endpoints": {
    "health": {
      "method": "GET",
      "url": "/health",
      "auth": false
    },
    "get_user": {
      "method": "GET",
      "url": "/user?chat_id=123",
      "auth": true
    },
    "send_message": {
      "method": "POST",
      "url": "/send",
      "auth": true,
      "body": {
        "chat_id": "required",
        "type": "text|photo|video|audio|document",
        "content": "text or url",
        "buttons": [
          {
            "text": "btn",
            "url": "https://..."
          }
        ]
      }
    }
  }
}