Get current user

Retrieve the authenticated user's Midpage identity and current subscription status.

Authenticate with a bearer token in the Authorization header.

Supported bearer tokens:

  • OAuth access token
  • API key

Common subscription statuses:

  • active
  • trialing
  • past_due
  • canceled

If no subscription status is available, subscriptionStatus may be null.

Responses
  • application/json
  • application/json
Request Example for get/me
curl http://app.midpage.ai/api/v1/me \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "userId": "user_123",
  "subscriptionStatus": "active"
}