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

# Delete browser profile

> Delete a browser profile (soft delete)



## OpenAPI

````yaml /api-reference/openapi.json delete /v1/browser_profiles/{profile_id}
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/browser_profiles/{profile_id}:
    delete:
      tags:
        - Browser Profiles
      summary: Delete browser profile
      description: Delete a browser profile (soft delete)
      operationId: delete_browser_profile_v1_browser_profiles__profile_id__delete
      parameters:
        - name: profile_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              The ID of the browser profile to delete. browser_profile_id starts
              with `bp_`
            examples:
              - bp_123456
            title: Profile Id
          description: >-
            The ID of the browser profile to delete. browser_profile_id starts
            with `bp_`
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Skyvern API key for authentication. API key can be found at
              https://app.skyvern.com/settings.
            title: X-Api-Key
          description: >-
            Skyvern API key for authentication. API key can be found at
            https://app.skyvern.com/settings.
      responses:
        '204':
          description: Successfully deleted browser profile
        '404':
          description: Browser profile not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````