Visualize Dataset
The Visualize Dataset endpoint allows users to visualize a dataset by providing a URL to the dataset in CSV format. Users can choose to receive the visualization in either JSON format (dataframe representation) or HTML format (plots).
Pricing Information
When the response is in HTML format (plots), it costs 2 units.
When the response is in JSON format, it costs 1 unit.
Visualize a CSV dataset.
POST
https://api.autogon.ai/api/v1/engine/visualize/
Headers
Name | Type | Description |
---|---|---|
Content-Type* | String | application/json |
X-AUG-KEY* | String | Your Autogon API Key |
Request Body
Name | Type | Description |
---|---|---|
data* | String | The URL of the dataset to be visualized in CSV format. |
return_json | String | If true, the response will be the dataframe representation of the dataset in JSON format. If false or omitted, the response will be the visualization plots in HTML format. |
Last updated