> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keywordsai.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete score

Deletes an evaluation score.

<RequestExample>
  ```Python Python theme={"system"}
  import requests

  url = "https://api.keywordsai.co/api/scores/{score_id}/"
  api_key = "YOUR_KEY" # Replace with your actual Keywords AI API key
  headers = {
      "Authorization": f"Bearer {api_key}",
      "Content-Type": "application/json"
  }

  response = requests.delete(url, headers=headers)
  print(response.status_code)  # Should print 204 for successful deletion
  ```
</RequestExample>

<ResponseExample>
  ```json 204 No Content theme={"system"}
  // No response body is returned for successful deletions.
  ```
</ResponseExample>
