VANITYPASS
White-label APIProfile & Memberships

Get Current Membership

Fetch user's active membership and tier information.

Get Current Membership

Fetch the user's active membership, including tier level, point balance, and available benefits.

Request

GET /v1/users/membership

Response

{
  "success": true,
  "data": {
    "id": "mem_xyz789",
    "tier": "Gold",
    "program": "MyBrand Rewards",
    "pointBalance": 15000,
    "expiringPoints": 500,
    "status": "active",
    "joinedAt": "2025-01-15T12:00:00Z",
    "nextTierAt": 20000,
    "benefits": [
      "Airport lounge access",
      "Hotel upgrade on availability"
    ]
  }
}

Try it

Sandbox-only. Try-it requests target https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us.
GET/v1/users/membership

Sandbox credentials

Keys never leave your browser — they are sent only to cloud.vanitypass.com with X-Environment: Sandbox.

curl -X GET 'https://cloud.vanitypass.com/v1/users/membership' \
  -H 'Content-Type: application/json' \
  -H 'X-Environment: Sandbox' \