import requests
url = "https://api.keywordsai.co/api/v2/experiments/list"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
data = {
"filters": {
"name": {
"operator": "startswith",
"value": "K"
}
}
}
response = requests.post(url, headers=headers, json=data)
print(response.json())