Python
import requests
url = "https://app.langwatch.ai/api/dashboards/{id}"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Dashboards
Get a dashboard by its id, including its graphs
Get a dashboard by its id, including its graphs
GET
/
api
/
dashboards
/
{id}
Python
import requests
url = "https://app.langwatch.ai/api/dashboards/{id}"
headers = {"X-Auth-Token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?
⌘I