/api/v1.1/meSecret keySDKCurrent context
Returns the current org, user, active key metadata, and plan limits.
Usage: Use this to confirm key scope and inspect plan limits before you build rate-limit handling.
SDK: client.me()
Response
{
"success": true,
"data": {
"organization": { "id": "org_123" },
"user": { "id": "user_123" },
"key": { "id": "key_123", "scope": "admin" },
"plan": {
"name": "Free Plan",
"limits": {
"maxApiCallsPerMonth": 10000,
"maxApiCallsPerMinute": 60
}
}
}
}SDK Example
const result = await client.me();
console.log(result.data.plan.limits);- Returns `429` when the current key has crossed per-minute or monthly limits.