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

# Quickstart

> Get started with the MT5 Monitor API in under 5 minutes

## Make your first API call

Test that the API is running by calling the health endpoint:

```bash theme={null}
curl https://api-verifier-2.onrender.com/health
```

You should receive:

```json theme={null}
{
  "status": "ok",
  "timestamp": "2024-01-15T12:00:00.000Z",
  "service": "MT5 Monitor API"
}
```

## Create an account

Register a new user account:

```bash theme={null}
curl -X POST https://api-verifier-2.onrender.com/web-register \
  -H "Content-Type: application/json" \
  -d '{
    "firstName": "John",
    "lastName": "Doe",
    "email": "john@example.com",
    "password": "securepassword123"
  }'
```

## Login and get your token

```bash theme={null}
curl -X POST https://api-verifier-2.onrender.com/login \
  -H "Content-Type: application/json" \
  -d '{
    "email": "john@example.com",
    "password": "securepassword123"
  }'
```

The response includes your user info and sets an authentication cookie.

## Fetch sentiment data

Get the latest market sentiment (no authentication required):

```bash theme={null}
curl https://api-verifier-2.onrender.com/api/sentiment
```

## Next steps

<CardGroup cols={2}>
  <Card title="MT5 integration" icon="chart-line" href="/guides/mt5-integration">
    Learn how to send MT5 trading data to the API
  </Card>

  <Card title="Blog management" icon="newspaper" href="/guides/blog-management">
    Create and manage blog posts
  </Card>

  <Card title="Sentiment data" icon="chart-pie" href="/guides/sentiment-data">
    Work with market sentiment data
  </Card>

  <Card title="API reference" icon="code" href="/api-reference/introduction">
    Explore all available endpoints
  </Card>
</CardGroup>
