API Reference
Current User
Read your account, plan, and month-to-date usage with GET /api/users/me.
GET https://api.jobspipe.dev/api/users/meReturns the authenticated user, their active subscriptions, and month-to-date API usage. Useful for showing usage in your own app or deciding when to upgrade.
This endpoint authenticates with a logged-in dashboard session (browser cookie), not an API key. It powers the dashboard's account and usage views.
Response
{
"id": "Au3mfHLFBxkbDCyYaKJVXX73oEI3vulY",
"name": "Ada Lovelace",
"email": "ada@example.com",
"emailVerified": true,
"image": null,
"apiUsed": 225,
"subscriptions": [
{ "plan": "builder", "status": "active", "periodEnd": "2026-07-01T00:00:00.000Z" }
]
}Fields
| Field | Type | Description |
|---|---|---|
id | string | User ID. |
name | string | Display name. |
email | string | Account email. |
emailVerified | boolean | Whether the email is verified. |
image | string | null | Avatar URL. |
apiUsed | number | Requests counted against the quota this calendar month. |
subscriptions | array | Active/trialing subscriptions: plan, status, periodEnd. |
To turn apiUsed into "remaining", subtract it from your plan's monthly request limit (see plans). The dashboard's Usage page does exactly this.