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

# Quickstart Guide

> Get started with Winnie in minutes

This quickstart guide will help you set up and start using Winnie's services quickly.

## Create an Account

1. Visit [Winnie Dashboard](https://dashboard.henlo-winnie.dev/)
2. Sign up for an account
3. Verify your email address

## Get Your API Key

Once you've created an account, you'll automatically get a free API key. You can view and manage your API keys in the dashboard.

1. Navigate to the "API Keys" section in the dashboard
2. Your default API key will be displayed
3. You can generate additional API keys based on your plan

<Tip>
  Store your API keys securely and never expose them in client-side code.
</Tip>

## Make Your First Request

Now you can make your first API request using your API key:

```bash
curl -X POST https://api.henlo-winnie.dev/v1/mainnet/YOUR_API_KEY \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
```

<Note>
  Replace `mainnet` with `devnet` if you want to connect to the testnet.
</Note>

## Available Plans

<CardGroup cols={2}>
  <Card title="Free" icon="gift" iconType="duotone" href="https://dashboard.henlo-winnie.dev/billing">
    <ul>
      <li>\$0/month</li>
      <li>500,000 Credits</li>
      <li>10 Requests/sec</li>
      <li>1 API Key</li>
    </ul>
  </Card>

  <Card title="Developer" icon="code" iconType="duotone" href="https://dashboard.henlo-winnie.dev/billing">
    <ul>
      <li>\$49/month</li>
      <li>10,000,000 Credits</li>
      <li>50 Requests/sec</li>
      <li>3 API Keys</li>
    </ul>
  </Card>

  <Card title="Business" icon="briefcase" iconType="duotone" href="https://dashboard.henlo-winnie.dev/billing">
    <ul>
      <li>\$499/month</li>
      <li>100,000,000 Credits</li>
      <li>200 Requests/sec</li>
      <li>5 API Keys</li>
    </ul>
  </Card>

  <Card title="Professional" icon="rocket" iconType="duotone" href="https://dashboard.henlo-winnie.dev/billing">
    <ul>
      <li>\$999/month</li>
      <li>200,000,000 Credits</li>
      <li>500 Requests/sec</li>
      <li>15 API Keys</li>
    </ul>
  </Card>
</CardGroup>

<Note>
  Enterprise plans are available with custom pricing and features. [Contact our sales team](mailto:winnie@stakelab.zone) for more information.
</Note>

## Next Steps

Now that you've made your first request, you can explore more of Winnie's features:

<CardGroup cols={2}>
  <Card title="Core Concepts" icon="lightbulb" href="/core-concepts/api-keys">
    Learn more on Winnie fundamental concepts
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore the full API reference
  </Card>
</CardGroup>
