Data API - UI Visualization
These define APIs to get data out of the system into another platforms User Interface
This feature is currently not generally available and is in development with select design partners.
This API call gets the data for a widget. The widget setup functions define the dimension (feature, prediction or actual). This call returns formatted data to be used in a User Interface
get
https://api.arize.com
/v1/reporting/get-widget-data
Get Widget Data
curl --request POST 'https://api.arize.com/v1/reporting/created-dashboard' \
--header 'Authorization: API_KEY' \
--data-raw '{
"end_time":"2021-08-25T03:23:28.132Z", //Required
"start_time":"2021-08-25T03:23:28.017Z", //Required
"widget_id":"widget-1" //Required
"y_scale":"linear" //Optional
"x_scale":"day" //Optional
}
This function returns an embed code to generate the dashboard page visualization in a 3rd party service.
Example Embed code:
<iframe src="https://app.arize.com/graph/embed?token=<EMBED_TOKEN>&height=800&width=1024&legend=false"
width="800" height="1024" frameBorder="0"></iframe>
get
https://api.arize.com
/v1/reporting/get-dashboard-embed
Get Dashboard Embed
curl --request POST 'https://api.arize.com/v1/reporting/created-dashboard' \
--header 'Authorization: API_KEY' \
--data-raw '{
"height":800, //Optional
"width":1024, //Optional
"dashboard_id":"dash-1" //Required
}
Last modified 5mo ago