LikeMinded
LikeMinded
Sign in
v1.0 · Stable

LikeMinded REST API

A fully production-ready API powering the entire LikeMinded ecosystem. Built on edge infrastructure, role-aware, and ready for SSO + SIS integrations.

Base URL
api.likeminded.app/v1
Auth
Bearer token (SSO)
Rate limit
600 req / min

Quick start

cURL
curl https://api.likeminded.app/v1/events \
  -H "Authorization: Bearer sk_live_xxxxxxx" \
  -H "X-Campus-ID: edu_42"

Endpoints

POST/v1/auth/sso
GET/v1/me
GET/v1/events
POST/v1/events
POST/v1/events/:id/rsvp
GET/v1/orgs
POST/v1/orgs/:id/members
POST/v1/hours
PATCH/v1/hours/:id
POST/v1/announcements
GET/v1/feed
GET/v1/analytics/engagement

Sample response · GET /v1/events

{
  "data": [
    {
      "id": "evt_8a1f",
      "title": "Spring Tech Hackathon",
      "category": "Hackathon",
      "date": "2026-06-04T17:00:00Z",
      "location": "Engineering Hall, Floor 3",
      "capacity": 250,
      "rsvp_count": 142,
      "status": "approved"
    }
  ],
  "meta": { "page": 1, "per_page": 20, "total": 47 }
}

Webhooks

Subscribe to real-time events from the platform.

event.created
event.rsvp.added
hours.submitted
hours.approved
org.activated
announcement.broadcast