Smart AI Runner+ — Quick Start

This page is the fastest path from purchase to first successful API call.

Back to Smart AI Runner+ Open User Guide Open Admin Guide 📢 Marketing Master

1. Buy Access

  1. Open the main site.
  2. Choose Starter, Pro, or Enterprise.
  3. Complete checkout in Stripe.

Main site:

https://cortex-runner-private.onrender.com

2. Retrieve Your Key

  1. Return to the main site.
  2. Use the Already Purchased section.
  3. Enter the same email used during checkout.
  4. Click Retrieve Key.

Your key will look similar to:

cust_xxxxxxxxxxxxxxxxxxxxxxxxx

3. Make Your First API Call

Endpoint:

https://cortex-runner-private.onrender.com/ask

Git Bash / Mac / Linux example

curl -X POST "https://cortex-runner-private.onrender.com/ask" \
  -H "Content-Type: application/json" \
  -H "X-CORTEX-KEY: cust_your_key_here" \
  -d '{"prompt":"Hello Smart AI Runner+"}'

PowerShell example

$headers = @{
  "Content-Type" = "application/json"
  "X-CORTEX-KEY" = "cust_your_key_here"
}

$body = @{
  prompt = "Hello Smart AI Runner+"
} | ConvertTo-Json

Invoke-RestMethod -Method Post `
  -Uri "https://cortex-runner-private.onrender.com/ask" `
  -Headers $headers `
  -Body $body

4. What Success Looks Like

{
  "status": "success",
  "response": "AI generated response"
}

5. Most Common Problems

ProblemCauseFix
Missing X-CORTEX-KEYNo customer key header was sentAdd the X-CORTEX-KEY header
invalid_or_inactive_customer_keyWrong, old, or inactive keyCheck the key or contact admin for reissue/reactivation
503 System temporarily disabledAdmin kill switch is enabledWait for maintenance to finish or contact admin
No response in terminalCommand formatting issueCopy the example exactly and replace only the key text

6. Plan Limits & Daily Quota

PlanDaily LimitMax Tokens / RequestPrice
Starter50 requests/day1,500$19/mo
Pro100 requests/day1,500$49/mo
Enterprise500 requests/day1,500$199/mo

Quotas reset at midnight UTC each day.

What Happens When You Hit Your Daily Limit?

Your request will be rejected with HTTP 402 and this message:

{"detail": "Daily quota exceeded. Resets at midnight UTC."}

No charges are applied for blocked requests — your count simply resets the next day.

Need More Requests?

If you are on…Upgrade toNew daily limit
Starter (50/day)Pro100/day
Pro (100/day)Enterprise500/day

Visit your customer portal to manage your subscription.

7. Best Next Step

If you are a customer, open the User Guide.

If you are operating the platform, open the Admin Guide.