Skip to main content
GET
/
v1
/
orgs
/
me
curl https://nest.feather.mupeni.dev/v1/orgs/me \
  -H "Authorization: Bearer <server_key>"
{
  "id": "org_01hx...",
  "name": "Acme Corp",
  "slug": "acme-corp",
  "plan": "pro",
  "billingCycleStart": "2024-01-01T00:00:00.000Z",
  "monthlyEvalCount": 312450,
  "createdAt": "2024-01-01T00:00:00.000Z"
}
Returns the organization associated with the authenticated API key or session.

Response

id
string
required
Organization ID.
name
string
required
Display name.
slug
string
required
URL-safe identifier. Unique across all organizations.
plan
"free" | "pro" | "enterprise"
required
Current billing plan.
billingCycleStart
string
required
ISO 8601 timestamp. The monthly evaluation count resets on this date each month.
monthlyEvalCount
number
required
Evaluations counted in the current billing cycle. Updated nightly by a cron job — not real-time.
createdAt
string
required
ISO 8601 creation timestamp.
curl https://nest.feather.mupeni.dev/v1/orgs/me \
  -H "Authorization: Bearer <server_key>"
{
  "id": "org_01hx...",
  "name": "Acme Corp",
  "slug": "acme-corp",
  "plan": "pro",
  "billingCycleStart": "2024-01-01T00:00:00.000Z",
  "monthlyEvalCount": 312450,
  "createdAt": "2024-01-01T00:00:00.000Z"
}