API Reference
MemberPulse API
Public read-only APIs for WordPress and external integrations.
Public API overview
The WordPress-facing API surface is intentionally read-only and paginated. All endpoints share:
limit(1-100)offset(0+)X-API-Keyheader authentication (UNAUTHORIZEDon missing or invalid key)- CORS preflight via
OPTIONS
Authentication
Pass your integration key in the X-API-Key header.
curl -H "X-API-Key: <your_key>" "https://api.memberpulse.com/api/v1/events?limit=20&offset=0"
{
"error": "Invalid API key",
"code": "UNAUTHORIZED"
}
Available routes
GET /api/v1/eventsGET /api/v1/resourcesGET /api/v1/coursesGET /api/v1/jobsGET /api/v1/communityGET /api/v1/sponsorships
Contract note
This endpoint set is read-only for now. Supported method: GET.
Mutation methods (POST, PUT, PATCH, DELETE) are intentionally unsupported.