ReddGrowReddGrow Docs

Meta

Account and authentication information

Get account info

Returns your account identity and current credit balance.

GET
/agent/me

Authorization

x-api-key<token>

API key starting with rg_. Create one at https://app.reddgrow.ai/settings/api-keys

In: header

curl -X GET "https://api.reddgrow.ai/agent/me" \
  -H "x-api-key: <token>"

Account info and credit balance

{
  "ok": true,
  "credits": {
    "used": 42,
    "remaining": 958,
    "limit": 1000
  }
}