Skip to main content
POST
/
api
/
trace
/
{id}
/
share
Python
import requests

url = "https://app.langwatch.ai/api/trace/{id}/share"

headers = {"X-Auth-Token": "<api-key>"}

response = requests.post(url, headers=headers)

print(response.json())
{
  "path": "<string>"
}

Authorizations

X-Auth-Token
string
header
required

Path Parameters

id
string
required

ID of trace to share

Response

Public path created

path
string
⌘I