Skip to main content
The Admin API is currently in alpha and available by invitation only

Prerequisites

To use the Mighty Networks API, you’ll need:
  1. A Mighty Networks account with a network
  2. An API access token from your network’s admin panel
API access is currently invite-only. Once you’re notified that it’s been enabled for you, simply navigate to Admin > Integrations > API in your Mighty Network to generate an API token. Growth and Mighty Pro Networks can email help@mightynetworks.com to request access.

Call the API

Here’s a simple example that retrieves information about your authenticated access token:
curl https://api.mn.co/admin/v1/networks/{network_id}/me \
  -H "Authorization: Bearer YOUR_API_TOKEN"
Replace {network_id} with your network ID and YOUR_API_TOKEN with your actual API token.

Example Response

{
  "id": "12345",
  "name": "John Doe",
  "email": "john@example.com",
  "network_id": "67890",
  "role": "admin",
  "created_at": "2024-01-15T10:30:00Z"
}

Next steps