Skip to main content
The Admin API is currently in beta

Prerequisites

To use the Mighty Networks Admin API, you’ll need:
  1. A Mighty Networks account with a Network on the Business, Growth or Mighty Pro plan
  2. An API access token from your Network’s admin panel

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": "[email protected]",
  "network_id": "67890",
  "role": "admin",
  "created_at": "2024-01-15T10:30:00Z"
}

Next steps