> 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 sends information about link clicks. See the sample cURL request below:

```curl
curl --request POST \
     --url https://in-automate.brevo.com/api/v2/trackLink \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'ma-key: YOUR_MA_KEY' \
     --data '
{
  "email": "abc@email.com",
  "link": "abc.com/document.pdf",
  "properties": {
    "key": "value"
  }
}
'
```

Parameters:

| Attribute    | Datatype | Description                                                          | Value                                 |
| :----------- | :------- | :------------------------------------------------------------------- | :------------------------------------ |
| `email`      | String   | Email address used to identify the user                              | [abc@email.com](mailto:abc@email.com) |
| `link`       | String   | Link to track                                                        | abc.com/document.pdf                  |
| `properties` | Object   | Custom fields. These user properties populate your contact database. | See example above                     |

**Response**

| Response code | Message                            | Description                                             |
| :------------ | :--------------------------------- | :------------------------------------------------------ |
| `204`         | Link has been tracked successfully | No content in the response — the link has been tracked. |
| `400`         | Bad request                        | Invalid, missing, or out-of-range parameters.           |