Smart AI Runner+ — User Guide

This guide explains how to buy access, retrieve your key, run the API, understand limits, and troubleshoot common issues.

Back to Smart AI Runner+ Quick Start

1. Purchase Access

Open the main website and choose a plan:

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

Complete the Stripe checkout process.

2. Retrieve Your Customer Key

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

Your customer key will look similar to:

cust_xxxxxxxxxxxxxxxxxxxxxxxxx

3. What the Customer Key Does

Your customer key authorizes your access to the Smart AI Runner+ API.

Every request must include this exact header name:

X-CORTEX-KEY

4. API Endpoint and Example

API endpoint:

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

Git Bash / Mac / Linux

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

$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

5. Where to Run the Command

For many Windows users, Git Bash is the easiest place to start.

6. Expected Response

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

7. Common Errors and What They Mean

ErrorMeaningWhat To Do
Missing X-CORTEX-KEYNo customer key header was sentAdd the X-CORTEX-KEY header to your request
invalid_or_inactive_customer_keyThe key is inactive, invalid, or oldDouble-check your key or contact the administrator for help
503 System temporarily disabledThe admin kill switch is turned on for maintenance or protectionWait and try again later or contact the administrator

8. Usage Limits

PlanDaily LimitMax Tokens/Request
Starter50 requests1,500
Pro100 requests1,500
Enterprise500 requests1,500

9. Best Practices

10. Need More Help?

Use Quick Start for the fastest setup path, or contact the platform administrator.