|
| 1 | +--- |
| 2 | +title: Convertly Destination |
| 3 | +id: 65e8b496eec9c40dbccbf749 |
| 4 | +beta: true |
| 5 | +--- |
| 6 | + |
| 7 | +[Convertly](https://www.tryconvertly.com){:target="\_blank”} lets you run AI on your product analytics. Create and generate charts and analyze data in minutes. |
| 8 | + |
| 9 | +This destination is maintained by Convertly. For any issues with the destination, contact the [Convertly support team ](mailto:[email protected]). |
| 10 | + |
| 11 | +## Getting started |
| 12 | + |
| 13 | +1. From the Destination catalog page in the Segment app, search for Convertly. |
| 14 | +2. Select and click **Add Destination**. |
| 15 | +3. Select an existing Source to connect to. |
| 16 | +4. In Convertly, navigate to your [API Keys](https://www.app.tryconvertly.com/account/apikeys){:target="\_blank"} page. |
| 17 | +5. Copy your API key. |
| 18 | +6. Return to Segment and enter the API key in the destination settings for your Convertly destination. |
| 19 | + |
| 20 | +## Supported methods |
| 21 | + |
| 22 | +Convertly supports the following methods, as specified in the [Segment Spec](/docs/connections/spec). |
| 23 | + |
| 24 | +### Page |
| 25 | + |
| 26 | +Send Page calls to Convertly, for example: |
| 27 | + |
| 28 | +```js |
| 29 | +analytics.page(); |
| 30 | +``` |
| 31 | + |
| 32 | +Page calls are used in Convertly to analyze drop off and build user funnels. |
| 33 | + |
| 34 | +### Identify |
| 35 | + |
| 36 | +Send Identify calls to Convertly, for example: |
| 37 | + |
| 38 | +```js |
| 39 | +analytics.identify("userId123", { |
| 40 | + |
| 41 | +}); |
| 42 | +``` |
| 43 | + |
| 44 | +Identify calls are used in Convertly to recognize users with a unique ID. This allows Convertly to generate charts and tables, providing insights into how users interact with data—all in natural language. |
| 45 | + |
| 46 | +### Track |
| 47 | + |
| 48 | +Send Track calls to Convertly, for example: |
| 49 | + |
| 50 | +```js |
| 51 | +analytics.track("Login Button Clicked"); |
| 52 | +``` |
| 53 | + |
| 54 | +Track calls, along with event names, are used in Convertly to track user events. Once a track event is sent, Convertly can query the data using natural language. |
0 commit comments