API v1
Getting Started
Make your first ReddGrow API v1 request
Prerequisites
Get your API key from Settings → API Keys in the ReddGrow dashboard.
Base URL
https://api.reddgrow.aiAuthentication
Add your key to every request as the x-api-key header:
curl https://api.reddgrow.ai/v1/health \
-H "x-api-key: rg_your_key_here"First Request: Health Check
curl https://api.reddgrow.ai/v1/health \
-H "x-api-key: rg_your_key_here"Expected response:
{ "status": "ok" }