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)const options = {method: 'GET', headers: {'X-Auth-Token': '<api-key>'}};
fetch('https://app.langwatch.ai/api/dashboards/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://app.langwatch.ai/api/dashboards/{id} \
--header 'X-Auth-Token: <api-key>'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)const options = {method: 'GET', headers: {'X-Auth-Token': '<api-key>'}};
fetch('https://app.langwatch.ai/api/dashboards/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://app.langwatch.ai/api/dashboards/{id} \
--header 'X-Auth-Token: <api-key>'Was this page helpful?
⌘I