> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://developers.brevo.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://developers.brevo.com/_mcp/server.

#### Legacy Tracker Documentation

For the legacy tracker doc, check our guide [here](https://tracker-doc.brevo.com/docs/getting-started-1).

This endpoint tracks your page views. Use the cURL request below:

```curl
curl --request POST \
     --url https://in-automate.brevo.com/api/v2/trackPage \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'ma-key: YOUR_MA_KEY' \
     --data '
{
  "email": "john.doe@email.com",
  "page": "Checkout",
  "properties": {
    "title": "Dashboard",
    "firstName": "John",
    "lastName": "Doe"
  }
}
'
```

Parameters:

| Attribute    | Datatype | Description                                                          | Value                                           |
| :----------- | :------- | :------------------------------------------------------------------- | :---------------------------------------------- |
| `email`      | String   | Email used to identify the user                                      | [john.doe@email.com](mailto:john.doe@email.com) |
| `page`       | String   | Page name                                                            | "Checkout page"                                 |
| `properties` | Object   | Custom fields. These user properties populate your contact database. | See example above                               |

**Response**

| Response code | Message                            | Description                                                 |
| :------------ | :--------------------------------- | :---------------------------------------------------------- |
| `204`         | Page has been tracked successfully | Page tracked. No JSON response body is returned with `204`. |
| `400`         | Bad request                        | Incorrect or missing parameters in the request.             |