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

# Delete Walmart Product From Oversight Tracking

> This endpoint deletes a product from a user's tracked products in Rivin.ai's Oversight Tracking.

<Warning>
  **🚧 Coming Soon**: This endpoint is currently in development and will be available soon. Stay tuned for updates!
</Warning>

<Note>
  **Rate Limit**: This endpoint has a default rate limit of **10 requests/second** per account. Need higher limits? [Contact our support team](https://cal.com/rivin-ai/30min) - we can accommodate any rate limit requirements on request.
</Note>

<Note>
  **Credit Cost**: Removing products from oversight tracking costs **0 credits**. Credits are charged daily based on your chosen oversight tier when data is queried:

  **Tier 0** (Every hour in depth): 150 credits/day - **Units in stock for ALL sellers + Price history for EACH seller every hour on query**\
  **Tier 1** (Every 2 hours): 90 credits/day\
  **Tier 2** (6 hours): 35 credits/day\
  **Tier 3** (12 hours): 20 credits/day\
  **Tier 4** (Daily): 10 credits/day
</Note>

<RequestExample>
  ```bash Example request theme={null}
  curl -X DELETE "http://rivin.ai/api/walmart/oversight/products/ov_123456789" \
    -H "Content-Type: application/json" \
    -H "x-api-key: (YOUR_API_KEY_HERE)"
  ```
</RequestExample>

<ResponseExample>
  ```json API Response theme={null}
  // 204 No Content - Product successfully deleted from oversight tracking
  ```
</ResponseExample>

<Note>
  **Oversight Management**: Remove products from your oversight tracking when they're no longer needed. This helps manage your tracking portfolio and optimize credit usage.
</Note>


## OpenAPI

````yaml DELETE /walmart/oversight/products/{id}
openapi: 3.1.0
info:
  title: Rivin.ai Walmart API
  description: >-
    API for retrieving Walmart product information, price history, and managing
    oversight tracking
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://rivin.ai/api
    description: Production API server
security: []
paths:
  /walmart/oversight/products/{id}:
    delete:
      tags:
        - Walmart Oversight
      summary: Delete Walmart Product From Oversight Tracking
      description: >-
        This endpoint deletes a product from a user's tracked products in
        Rivin.ai's Oversight Tracking.
      operationId: deleteWalmartOversightProduct
      parameters:
        - name: x-api-key
          in: header
          description: >-
            Your unique API key for authentication. This key is required in the
            header of all API requests, to authenticate your account and access
            Rivin.ai's services. Get your API key through the
            [Settings](https://rivin.ai/settings) page.
          required: true
          schema:
            type: string
        - name: id
          in: path
          description: ID of the oversight product to delete
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Product deleted from oversight tracking
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string

````