GET
/meGet Account Info
Retrieve account information, plan details, and usage statistics
Scope: FORMS_READ
Overview
Returns account-level information including the current plan, AI credit balance, storage usage, and API call quota. Useful for building dashboards or monitoring usage programmatically.
Request
GET
/meHeaders
| Header | Value |
|---|---|
Authorization | Bearer fxk_live_<your-api-key> |
Example Request
curl -X GET "https://api.formfex.com/api/v1/public/me" \
-H "Authorization: Bearer $FORMFEX_API_KEY"Response
Response Fields
| Field | Type | Description |
|---|---|---|
data.plan | string | Current subscription plan (free, starter, pro, business) |
data.aiCreditsRemaining | number | Remaining AI credits for the current billing period |
data.aiFormsGenerated | number | Number of AI-generated forms created |
data.ragUploadsUsed | number | Number of RAG document uploads used |
data.storageBytesUsed | number | Total file storage used in bytes |
data.apiCalls.used | number | API calls consumed in the current period |
data.apiCalls.limit | number | Maximum API calls allowed per period |
data.apiCalls.resetsAt | string | ISO 8601 timestamp when the API call quota resets |
Monitor Your Usage
Poll this endpoint periodically to track credit consumption and avoid hitting quota limits. The apiCalls.resetsAt field tells you when your monthly quota refreshes.