me
Your key, the engines available, and your credit balance.
GET https://geondex.com/api/v1/me- Cost: Free
- Auth:
Authorization: Bearer gx_…(see Authentication) - Try it: Open the playground
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·stringemail·stringengines·string[]credits·objectcredits.plan·"free" | "starter" | "standard"credits.monthlyAllowance·numbercredits.allowanceRemaining·numbercredits.packRemaining·numbercredits.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.
| HTTP | When |
|---|---|
401 | Missing or invalid key |
429 | Rate limited |
Every error.code and what to do about it: Errors & rate limits.