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

# Stop a running auto test



## OpenAPI

````yaml /openapi.yaml delete /v1/videos/{id}/experiments/{type}/run
openapi: 3.1.0
info:
  title: VTurb API
  version: v1
  description: |
    Public REST API for VTurb. Dev-first and agents-first: every documented
    response is recorded from the API's real behavior.
  contact:
    name: VTurb API
    url: https://vturb.com
servers:
  - url: https://api.vturb.com
security:
  - bearerAuth: []
paths:
  /v1/videos/{id}/experiments/{type}/run:
    delete:
      tags:
        - Experiments
      summary: Stop a running auto test
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          example: 652f2b1e8f1b2c3d4e5f6a7b
        - name: type
          in: path
          required: true
          schema:
            type: string
            enum:
              - turbo
              - headline
              - smart_autoplay
          example: turbo
      responses:
        '204':
          description: >-
            Stops an incomplete test early; its stats are frozen as they stand
            and the test no longer runs.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Paste your VTurb API token (vt_...). Sent as `Authorization: Bearer
        <token>`.

````