Skip to main content

Docs / Quickstart

Quickstart

  1. Subscribe via AWS Marketplace.

    Find LogiRoot on the AWS Marketplace and choose a tier (Starter, Professional, Enterprise). AWS handles billing through your AWS account.

  2. Complete fulfillment.

    On subscription, AWS redirects you to https://logirootai.com/api/marketplace/fulfill. LogiRoot provisions your tenant and shows your API key. Save it now — it will not be shown again.

  3. Send your first governance evaluation.
    curl https://api.logirootai.com/v1/governance/evaluate \
      -H "X-API-Key: $LOGIROOT_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "tool_name": "send_email",
        "args": { "to": "alice@example.com", "subject": "Hello" },
        "context": { "session_id": "demo-1" }
      }'

    The response includes a decision (APPROVE / REJECT / ESCALATE), the policy IDs that fired, and a compliance receipt identifier you can present to auditors later.

  4. Wire it into your AI workflow.

    Call governance evaluate before each AI tool call. If the response is APPROVE, execute the tool. If REJECT, do not execute and surface the reason to your operator. See Integration for patterns.

Stuck? Email support@logirootai.com with your tenant name and a sample request.