Python
import requests
url = "https://app.langwatch.ai/api/dashboards"
payload = { "name": "<string>" }
headers = {
"X-Auth-Token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Dashboards
Create a new dashboard
Create a new dashboard
POST
/
api
/
dashboards
Python
import requests
url = "https://app.langwatch.ai/api/dashboards"
payload = { "name": "<string>" }
headers = {
"X-Auth-Token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Was this page helpful?
⌘I