Getting Started

Everything you need to integrate with the MMM API in 5 minutes flat.

1

Get Your API Key

Create an account and obtain your API key through our developer dashboard.


// Login or create an account at https://api.mmmn.dev
// Navigate to 'Developer Settings' in the dashboard
// Create a new API key with appropriate permissions

2

Install SDK

Use our official SDKs for popular programming languages.


# Python
pip install mmmn-api

# Node.js
npm install @mmm/api

# Shell (curl)
# Supported out-of-the-box - no installation needed!

3

Make Your First Request

Use your API key to authenticate and send your first API request.


curl -X POST 'https://api.mmmn.dev/v1' \
     -H 'Authorization: Bearer YOUR_API_KEY' \
     -H 'Content-Type: application/json' \
     -d '{"query":"hello world"}'

4

Handle Responses

Our API returns JSON responses with metadata and results.


{
  "status": "success",
  "data": {
    "result": "Hello from the MMM API!",
    "timestamp": "2025-09-14T12:34:56.789Z"
  }
}

Need More Help?

Our extensive documentation includes code samples for 12+ platforms and detailed API reference.

Visit Documentation