{ "filters": { "name": { "value": "E" } } }
{ "count": 1, "results": [ { "id": "testset_id_123", "name": "Example Testset", "description": "Example description" } ] }
Documentation IndexFetch the complete documentation index at: https://docs.keywordsai.co/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.keywordsai.co/llms.txt
Use this file to discover all available pages before exploring further.
Authorization: Bearer <API key>
import requests url = "https://api.keywordsai.co/api/testsets/list" headers = { "Authorization": "Bearer YOUR_API_KEY", "Content-Type": "application/json" } data = { "filters": { "name": { "value": "E" } } } response = requests.post(url, headers=headers, json=data) print(response.json())
Was this page helpful?