Endpoint: Entitlements
Method + path
GET /convert/entitlements/me
Auth
Requires X-Fast-Api-Key header. API keys are always associated with a Pro account, so API callers will always see pro-tier entitlements.
Response
200 OK with ConvertFastEntitlementsResponse.
| Field | Type | Required | Description |
|---|---|---|---|
userId | string|null | no | User ID |
organizationId | string|null | no | Organization GUID |
planId | string | yes | Plan identifier ("pro" for API users) |
planName | string | yes | Display name of the plan |
accessDisplayName | string|null | no | Short display label (e.g. "Pro") |
totalCredits | number | yes | Currently available credits — decreases as credits are consumed |
tier | string | yes | "pro" for API users |
dailyLimit | number|null | no | Daily credit limit (null for pro) |
dailyUsed | number|null | no | Credits used today (null for pro) |
resetDate | string|null | no | Daily reset date (null for pro) |
totalCredits reflects your real-time credit balance from the central credit system and decreases with each conversion.
Example — Pro tier
{
"userId": "0195e2a0-1234-7000-8000-000000000099",
"organizationId": "0195e2a0-1234-7000-8000-000000000050",
"planId": "pro",
"planName": "Pro",
"accessDisplayName": "Pro",
"totalCredits": 4850,
"tier": "pro",
"dailyLimit": null,
"dailyUsed": null,
"resetDate": null
}
Examples
curl -sS "https://api.tools.fast/convert/entitlements/me" \
-H "X-Fast-Api-Key: fast_prod_your_key_here"Invoke-RestMethod "https://api.tools.fast/convert/entitlements/me" `
-Headers @{ "X-Fast-Api-Key" = "fast_prod_your_key_here" }