cURL
curl --request DELETE \ --url https://api.keywordsai.co/api/testsets/{testset_id}/rows/{row_index} \ --header 'Authorization: Bearer <token>'
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 testset_id = "testset_id_123" row_index = 0 url = f"https://api.keywordsai.co/api/testsets/{testset_id}/rows/{row_index}" headers = { "Authorization": "Bearer YOUR_API_KEY" } response = requests.delete(url, headers=headers) print(response.status_code)
Was this page helpful?