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

# Quick Start

> Get up and running in minutes yourself or book a <a href="https://calendly.com/whetdata/new-meeting" target="_blank">demo</a>!

<Steps>
  <Step title="1. Create your API key">
    Sign up at <a href="https://whetdata.com/dashboard" target="_blank">whetdata.com</a> and create your API key in the dashboard.
  </Step>

  <Step title="2. Call the API">
    Here's an example:

    ```javascript actions.ts lines icon="square-js" theme={null}
    const response = await fetch("https://whetdata.com/api/ult", {
      method: "POST",
      headers: {
        "Content-Type": "application/json",
        "x-api-key": process.env.WHET_API_KEY,
      },
      body: JSON.stringify({
        action: ["nudges"], // select which actions you want returned.
        ruleset: "product", // select on the dashboard or specify here.
        text: "This product is good and works well.",
        max_nudges: 3,
      }),
    });

    const data = await response.json();
    console.log(data);
    ```
  </Step>
</Steps>

**And that's it!** You can now head to <a href="/api-reference/rulesets">rulesets</a> to fine-tune queries, take a look at some other <a href="/api-reference/classification">actions</a>, or head to the <a target="_blank" href="https://whetdata.com/dashboard">dashboard</a> to see stats for your requests and add users to your project.

<Note>**Need help?** [Contact support](mailto:contact@whetdata.com).</Note>
