Job interactions
GET /me/plan Session or API key
Your plan and what it allows today.
Which plan you are on and, for every metered AI feature, how much of today you have used against what the day allows. Every plan offers every feature; what differs is the daily amount, and it resets at resets_at. A pro caller reads as unlimited rather than as a number. enforced says whether that ceiling turns anybody away yet — while it is false a spent allowance is counted and the action still runs, so do not refuse on used >= limit alone. Never runs the LLM.
curl "https://freehire.me/api/v1/me/plan" -H "Authorization: Bearer $HIREALL_API_KEY"{
"data": {
"plan": "free",
"resets_at": "2026-09-01T00:00:00Z",
"allowances": [
{ "feature": "tailor", "used": 1, "limit": 2, "unlimited": false, "enforced": false, "resets_at": "2026-09-01T00:00:00Z" },
{ "feature": "match", "used": 0, "limit": 3, "unlimited": false, "enforced": false, "resets_at": "2026-09-01T00:00:00Z" }
]
}
}