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

# Wearable API Quickstart

> Make your first wearable API call in 5 minutes. Sign up, grab an API key, and make your first authenticated health data request.

## Get started in three steps

Create an account and start integrating wearable device data in minutes — no infrastructure to set up.

### Step 1: Create your account

<Accordion icon="user-plus" title="Sign up">
  Head to [app.rabts.com/register](https://app.rabts.com/register) and create a developer account with your email and password.

  Once signed in you'll land on the dashboard, where you can manage users, connections, webhooks, and API keys.
</Accordion>

### Step 2: Generate an API key

<Accordion icon="key" title="Create an API key">
  From the dashboard, open **Settings → API Keys** and create a new key. Copy it somewhere safe — it's only shown once.

  <Tip>
    Outgoing webhooks are disabled by default. Enable them from **Settings → Webhooks** to get
    real-time event delivery — see the [webhooks guide](/api-reference/guides/webhooks).
  </Tip>
</Accordion>

### Step 3: Make your first API call

<Accordion icon="rocket" title="Test the API">
  1. **Check API status**:
     ```bash theme={null}
     curl https://api-sport.rabts.com/
     ```
     Should return: `{"message": "Server is running!"}`

  2. **View API documentation**:
     Open the [API Reference](/api-reference/introduction) to explore all available endpoints interactively.

  3. **Make an authenticated request**:
     ```bash theme={null}
     curl https://api-sport.rabts.com/api/v1/users \
       -H "X-Open-Wearables-API-Key: YOUR_API_KEY"
     ```

  4. **Invite a user to connect a wearable**:
     From the dashboard, create a user and share their connection link. Once they connect a device, their normalized data is available through the API immediately.
</Accordion>

## Next steps

<CardGroup cols={2}>
  <Card title="API Reference" icon="terminal" href="/api-reference/introduction">
    Explore all available API endpoints.
  </Card>

  <Card title="Support" icon="life-ring" href="/support">
    Get help from our team.
  </Card>
</CardGroup>

<Note>
  **Need help?** Check out our [support page](/support) or the [FAQs](/faqs).
</Note>
