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

# Início Rápido

> Envie sua primeira mensagem WhatsApp em menos de 5 minutos

## Comece em três passos

<Steps>
  <Step title="Criar uma API Key">
    Acesse o [Dashboard do Grwthy](https://grwthy.com) e navegue até **API Keys**. Clique em **Nova API Key**, dê um nome e escolha a expiração desejada.

    <Warning>Copie a API key imediatamente — ela é exibida apenas uma vez.</Warning>
  </Step>

  <Step title="Criar uma Instância">
    Crie uma instância WhatsApp com suas credenciais:

    ```bash theme={null}
    curl -X POST https://grwthy.com/v1/instances \
      -H "Content-Type: application/json" \
      -H "X-Api-Key: SUA_API_KEY" \
      -d '{
        "instanceName": "minha-loja",
        "phoneNumberId": "123456789012345",
        "accessToken": "SEU_ACCESS_TOKEN"
      }'
    ```
  </Step>

  <Step title="Enviar uma Mensagem">
    Envie uma mensagem de texto:

    ```bash theme={null}
    curl -X POST https://grwthy.com/v1/messages/text/INSTANCE_ID \
      -H "Content-Type: application/json" \
      -H "X-Api-Key: SUA_API_KEY" \
      -d '{
        "number": "5511999999999",
        "text": "Olá do Grwthy!"
      }'
    ```
  </Step>
</Steps>

## Próximos passos

<CardGroup cols={2}>
  <Card title="Instâncias" icon="server" href="/api-reference/instances">
    Gerencie suas instâncias WhatsApp.
  </Card>

  <Card title="Mensagens" icon="paper-plane" href="/api-reference/messages">
    Todos os tipos de mensagem disponíveis.
  </Card>
</CardGroup>
