Accessing WordPress data

Hi - I am looking at using Glide to make my membership data more accessible. Whilst I could export it to a spreadsheet every time, that would be unnecessarily tedious.

I can’t find a WordPress plugin, but wonder if there is any other way I could pull the appropriate data from WordPress dynamically into Glide?

It gives me this info from a search.

WordPress has a built-in REST API (available since WordPress 4.7) that exposes your content via HTTP endpoints. By default, it’s available at:

https://yoursite.com/wp-json/wp/v2/

For Membership Data Specifically

The exact approach depends on what membership plugin you’re using:

If using a popular membership plugin (MemberPress, WooCommerce Memberships, Paid Memberships Pro, etc.):

  • Many have their own REST API endpoints or add-ons

  • Check your plugin’s documentation for specific endpoints

If using custom user roles/fields:

  • Standard WordPress users endpoint: /wp-json/wp/v2/users

  • User meta data can be accessed with proper authentication

So once you figure out the correct endpoint, send an API call to that endpoint and grab your data back to Glide, I think.