Skip to main content
GET
/
account
Get account
curl --request GET \
  --url https://xquik.com/api/v1/account \
  --header 'x-api-key: <x-api-key>'
Free — does not consume credits
curl https://xquik.com/api/v1/account \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Headers

x-api-key
string
required
Your API key. Generate one from the API Keys page.

Response

plan
string
Subscription status. "active" or "inactive".
pricingVersion
number
Pricing version for the subscription. Defaults to 1.
monitorsAllowed
number
Maximum monitors your plan allows.
monitorsUsed
number
Number of currently active monitors.
currentPeriod
object
Current billing period. Omitted if no active subscription.
{
  "plan": "active",
  "pricingVersion": 1,
  "monitorsAllowed": 1,
  "monitorsUsed": 0,
  "currentPeriod": {
    "start": "2026-02-01T00:00:00.000Z",
    "end": "2026-03-01T00:00:00.000Z",
    "usagePercent": 15
  }
}

Usage quota

Every subscriber gets a monthly usage quota that resets each billing period. The quota covers operations that query the X API. Management operations are unlimited.
OperationMonthly Limit (approx.)
Tweet searches~66,000
User lookups~55,000
Follower fetches~66,000
Verified follower fetches~33,000
Follow checks~66,000
Check usagePercent to track remaining capacity. At 100%, metered API calls return 402.