Skip to main content

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": "john@example.com",
  "network_id": "67890",
  "role": "admin",
  "created_at": "2024-01-15T10:30:00Z"
}

Next steps

Admin API Reference

Explore all available endpoints and their parameters.

Authentication

Learn about authentication and API token management.

Key Concepts

Understand networks, spaces, members, and core concepts.

Rate Limits

Understand API rate limits and best practices.