> ## Documentation Index
> Fetch the complete documentation index at: https://docs.biconomy.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Set a Production API Key

Developers can use and test the AbstractJS SDK and access the Modular Execution
Environment (the Biconomy Network) without getting an API key. However, using
the infrastructure this way has rate limits applied to it.

## Going to Production

In order to get higher rate limits, go to
[Biconomy Dashboard](https://dashboard.biconomy.io) and create a new
MEE stack project. There you will have an API key which you can add when
initializing the `MeeClient` in AbstractJS.

```ts theme={null}
const meeClient = await createMeeClient({
  account: oNexus,
  apiKey: 'mee_your_api_key_here'
});
```
