Helicone Community Page

Home
Members
harrylau0726
h
harrylau0726
Offline, last seen 3 weeks ago
Joined February 3, 2025
Sorry for one more question. Suggested by the dashboard, I tried to get the requests from API but I got an error like this:

{"error":"No API key found","trace":"isAuthenticated.error"}

Would it be caused by the EU data region, or any other reasons? I am sure that my API is valid as I am still using it.



import requests

url = "https://api.helicone.ai/v1/request/query-clickhouse"

payload = {
"filter": "all",
"isCached": False,
"limit": 10,
"offset": 0,
"sort": {"created_at": "desc"},
"isScored": False,
"isPartOfExperiment": False
}
headers = {
"authorization": HELICONE_API_KEY,
"Content-Type": "application/json"
}

response = requests.request("POST", url, json=payload, headers=headers)

print(response.text)
Hello, I found that the temperature and top_p values are not logged in the schema for Anthropic only, while others (such as OpenAI and gemini) does have. Is it a bug, or there are some ways to enable it? Thanks!