JobsPipe
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/me

Returns 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

200 OK
{
  "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

FieldTypeDescription
idstringUser ID.
namestringDisplay name.
emailstringAccount email.
emailVerifiedbooleanWhether the email is verified.
imagestring | nullAvatar URL.
apiUsednumberRequests counted against the quota this calendar month.
subscriptionsarrayActive/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.

On this page