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

# Delete evaluation agent

> Remove an evaluation agent that is no longer needed.

# Delete Evaluation Agent

Delete an evaluation agent when it is no longer needed.

<Warning>
  This is a destructive cleanup action. It removes the evaluation agent record
  for the authenticated account.
</Warning>

Use this after listing or retrieving an agent and confirming the `id` belongs
to the evaluation target you want to remove.

## Endpoint

```http theme={null}
DELETE /api/agents/{id}
```

## Authentication

Send your platform API key in the `x-api-key` header.

## Path Parameters

| Name | Type           | Description          |
| ---- | -------------- | -------------------- |
| `id` | `string<uuid>` | Evaluation agent ID. |

## Success Response

Returns `204 No Content` when the agent is deleted.


## OpenAPI

````yaml delete /api/agents/{id}
openapi: 3.0.3
info:
  title: Rippletide Agent Evaluation API
  description: >-
    Public API for evaluation agents, test prompts, test results, and knowledge
    imports
  version: 1.0.0
  contact:
    name: Rippletide API Support
servers:
  - url: https://agent-evalserver-production.up.railway.app
    description: Production server
  - url: http://localhost:3001
    description: Development server
security: []
paths:
  /api/agents/{id}:
    delete:
      tags:
        - Agents
      summary: Delete evaluation agent
      description: >-
        Delete an evaluation agent that you no longer want to test or track.
        This is a cleanup action for agents owned by the authenticated account.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: Evaluation agent ID returned by Create evaluation agent.
      responses:
        '204':
          description: Evaluation agent deleted successfully
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Agent not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        details:
          type: string
          nullable: true
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Platform API key for authenticated account-level API access

````