Authentication

To use the MNEE SDK and interact with the MNEE API, you must authenticate your requests with an API key.

Why Do I Need an API Key?

The API key is required to:

  • Securely identify your application or integration.

  • Enable access to protected endpoints and features.

  • Track usage and ensure fair access for all users.

How to Get an API Key?

Create a MNEE Developer account and generate your API keys for free.

Developer Portal

Using Your API Key

Once you have your API key, you can use it in your application as follows:

import Mnee from '@mnee/ts-sdk';

const mnee = new Mnee({
  environment: 'sandbox', // or 'production'
  apiKey: 'YOUR_API_KEY_HERE',
});

Troubleshooting

Last updated