# Try It Out

**Testing the w3aSDK Integration Without an SDK Key**

If you're keen on exploring the w3aSDK integration without committing to an SDK key, this guide has got you covered.

Simply follow the steps outlined in the [**Quick Start**](https://web3-acquire.gitbook.io/product-docs/technical-guides/react-spa/quick-start) guide, but with a slight modification during the SDK initialization.

#### **SDK Initialization**

In the `w3aSDK.configure` method, activate the `test` flag within the options. You can either retain the placeholder `<API_KEY>` or replace it with any arbitrary value:

```javascript
// File: index.js
import { w3aSDK } from "@web3acquire/w3a";

w3aSDK.configure(
    "<API_KEY>", // leave as is or put anything in here
    { test: true } // add the test flag to your configuration
);
```

That's it! This minor tweak allows you to experience the integration without the need for an SDK key or reaching out to us.

For verification of a successful integration, refer to the [**Verify**](https://web3-acquire.gitbook.io/product-docs/technical-guides/react-spa/verify) section. It provides a step-by-step guide to ensure everything is set up correctly.
