Support & Community

Need help with mmmn? Find answers in our documentation, join our community, or reach out directly.

API Support Example

JavaScript
fetch('https://api.mmmn.dev/support', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    type: 'bug',
    description: 'Visualization lag',
    environment: 'browser: chrome v120'
  })
}).then(response => response.json());