geondex
Docs

me

Your key, the engines available, and your credit balance.

GET https://geondex.com/api/v1/me

Your key, the engines available, and your credit balance

Request

No parameters. Send only the key.

Example request

curl -s "https://geondex.com/api/v1/me" -H "Authorization: Bearer gx_YOUR_KEY"

Response

200 with a JSON object.

Fields

  • userId · string
  • email · string
  • engines · string[]
  • credits · object
  • credits.plan · "free" | "starter" | "standard"
  • credits.monthlyAllowance · number
  • credits.allowanceRemaining · number
  • credits.packRemaining · number
  • credits.total · number

Example response

Real-shaped, checked against the output schema by a test. Long lists are shortened.

{
  "userId": "Zq3vN8pL2mT7wR5kB9cY1dF4",
  "email": "you@example.com",
  "engines": [
    "perplexity",
    "openai",
    "claude",
    "gemini"
  ],
  "credits": {
    "plan": "starter",
    "monthlyAllowance": 5000,
    "allowanceRemaining": 4388,
    "packRemaining": 1500,
    "total": 5888
  }
}

Errors

Every error has the body {"error":{"code":"…","message":"…"}} and is not charged.

HTTPWhen
401Missing or invalid key
429Rate limited

Every error.code and what to do about it: Errors & rate limits.

On this page