agent
    agent
    • Authentication
    • Logs
      • Get Log
        GET
      • Clear Logs
        POST
    • Database
      • Tables
        • Create Table
        • Delete Table
      • Create Database
        POST
      • Delete Database
        DELETE
      • Get Databases
        GET
    • User
      • Create User
        POST
      • Delete User
        DELETE
    • System
      • Get System Info
        GET
      • Run System Action
        POST
      • Install Database
        POST
      • Is Database Installed
        GET
    • Schema
      • Create Schema
        POST
      • Delete Schema
        DELETE
      • Get Schemas
        GET

    Authentication

    🔐 API Authentication Guide#

    This API uses Bearer Token Authentication via the Authorization HTTP header.

    🛡️ How to Authenticate#

    All requests to protected endpoints must include the Authorization header in the following format:

    📦 Example Request#


    ❌ Error Handling#

    If the token is missing or invalid, the API will respond with:
    HTTP Status Code: 401 Unauthorized
    Response Body:
    {
      "error": "Unauthorized"
    }
    Modified at 2025-08-02 00:51:24
    Next
    Get Log
    Built with