Skip to main content

Documentation Index

Fetch the complete documentation index at: https://rekko.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Returns the authenticated customer’s profile, current plan, monthly usage, and quota limits.

Request

Authorization
string
required
Bearer token with your API key (e.g. Bearer rk_free_abc123...)
curl -X GET "https://api.rekko.ai/v1/customers/me" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

customer_id
string
Your Stripe customer ID.
email
string
Email associated with your account.
plan
string
Current plan: free or pro.
status
string
Account status: active, past_due, or canceled.
key_prefix
string
Display-safe prefix of your API key (e.g. rk_free_...).
usage
object
Monthly usage counts by tier.
quotas
object
Monthly quota limits for your plan.
resets_on
string
ISO date when usage counters reset (first of next month).
{
  "customer_id": "cus_abc123",
  "email": "trader@example.com",
  "plan": "free",
  "status": "active",
  "key_prefix": "rk_free_...",
  "usage": {
    "listing": 42,
    "insight": 3,
    "strategy": 0,
    "deep": 0
  },
  "quotas": {
    "listing": 100,
    "insight": 10,
    "strategy": 0,
    "deep": 0
  },
  "resets_on": "2026-04-01"
}