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

# Quickstart

> Create a workspace, connect a website, and send your first test message.

Follow this path for a working Replied setup.

<Steps>
  <Step title="Create your workspace">
    Open [replied.dk/signup](https://replied.dk/signup), pick a plan, add company details, and finish checkout.
  </Step>

  <Step title="Activate your account">
    Open the activation email, set your password, then sign in at [app.replied.dk](https://app.replied.dk).
  </Step>

  <Step title="Invite your team">
    Add teammates from the team area. Assign roles before you route live customer messages.
  </Step>

  <Step title="Create a category">
    Add at least one category, such as Sales, Support, or Billing.
  </Step>

  <Step title="Connect your website">
    Use the widget for a fast setup, or send JSON to the API from an existing form.
  </Step>

  <Step title="Send a test message">
    Submit a test form and confirm the message appears in the dashboard.
  </Step>
</Steps>

## Fast API test

```bash theme={null}
curl -X POST https://www.replied.dk/api/v1/submit/YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -d '{"name":"Test User","email":"test@example.com","message":"This is a test message."}'
```

A successful request returns `success: true` and creates a dashboard message.

## Next steps

<CardGroup cols={2}>
  <Card title="Core concepts" icon="blocks" href="/documentation/core-concepts">
    Learn the main objects in Replied.
  </Card>

  <Card title="Create forms" icon="file-input" href="/guides/create-forms">
    Connect an existing form to Replied.
  </Card>
</CardGroup>
