Browse membership types
Membership types are the products your organization sells — annual passes, family memberships, student plans, and add-ons. This guide shows you how to list available membership types, inspect their pricing plans, and retrieve a single type's full configuration.
Before you begin
- Authentication — you need a valid API key.
- Membership overview — understand how membership types, plans, and subscriptions relate.
1. List membership types
Start by fetching all membership types to display in a catalog, admin dashboard, or integration sync. The response includes each type's title, description, and nested pricing plans.
Code
The response includes a paginated list of membership types. Each type contains a plans array with the pricing tiers available for that membership.
Code
Note: Plan amounts are in cents. Divide by 100 for display —
"2500"is $25.00.
2. Get a single membership type
When you need the full configuration for a specific membership — for a detail page, checkout flow, or configuration screen — fetch it by ID.
Code
The response includes the complete type record with all plans, associated waivers, and the form ID if a signup form is configured. Use the plans array to display pricing options and the visibility_requires_base_membership field to determine if this is an add-on that should only appear to existing members.
3. Identify base and add-on memberships
Membership types are either base (standalone) or add-on (requires a base membership). When building a storefront, you'll typically want to display base memberships first, then show applicable add-ons after the member has selected or already holds a base membership.
Add-on types have visibility_requires_base_membership set to the base membership's identifier. Use this field to filter your display logic — only show add-ons to users who already have the required base membership active.
What's next
- Create and archive membership types — add catalog products or toggle archive state
- Send membership cards — deliver digital membership cards to members
- Membership overview — review how membership types, plans, and cards relate
- See the Membership Type endpoints in the API Reference for the complete list of fields