> ## 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.

# Get Oversight Data for Specific Product

> This endpoint returns detailed oversight tracking data for a specific product.

<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**: Retrieving oversight data costs **0 credits**. Credits are charged daily based on your chosen oversight tier when data is queried:

  **Tier 1** (Every hour): 100 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 GET "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}
  {
    "id": "ov_123456789",
    "walmart_product_code": "1370971228",
    "user_id": "user_123",
    "created_at": "2024-01-15T10:30:00Z",
    "tracking_data": {
      "current_price": 39.88,
      "units_in_stock": 45,
      "last_updated": "2024-01-15T10:30:00Z"
    }
  }
  ```
</ResponseExample>

<Note>
  **Detailed Tracking**: This endpoint provides comprehensive oversight data for a specific tracked product, including current pricing, inventory levels, and tracking metadata. Use this to get real-time insights into your tracked products.
</Note>


## OpenAPI

````yaml GET /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}:
    get:
      tags:
        - Walmart Oversight
      summary: Get Oversight Data for Specific Product
      description: >-
        This endpoint returns detailed oversight tracking data for a specific
        product.
      operationId: getWalmartOversightProduct
      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 retrieve data for.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OversightProductData'
        '400':
          description: Bad request - Invalid product ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Product not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    OversightProductData:
      type: object
      properties:
        id:
          description: Unique identifier for the oversight product
          type: string
        walmart_product_code:
          description: The Walmart product code being tracked
          type: string
        user_id:
          description: The user ID who is tracking this product
          type: string
        created_at:
          description: When the product was added to oversight
          type: string
          format: date-time
        tracking_data:
          description: Current tracking data for the product
          type: object
          properties:
            current_price:
              type: number
              format: float
              description: Current product price
            units_in_stock:
              type: integer
              description: Current units in stock
            last_updated:
              type: string
              format: date-time
              description: When the data was last updated
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string

````