/api/v1/meFreeReturns the authenticated user's plan and current quota usage. Does not consume quota itself.
Request
curl https://newsprobe.io/api/v1/me \ -H "Authorization: Bearer np_live_…"
Response
{
"ok": true,
"userId": "…",
"plan": "free",
"usage": {
"minuteCount": 2,
"minuteLimit": 10,
"dayCount": 14,
"dayLimit": 50
}
}