GET
/
walmart
/
oversight
/
products
/
{id}
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)"
{
  "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"
  }
}
🚧 Coming Soon: This endpoint is currently in development and will be available soon. Stay tuned for updates!
Rate Limit: This endpoint has a default rate limit of 10 requests/second per account. Need higher limits? Contact our support team - we can accommodate any rate limit requirements on request.
Credit Cost: This endpoint costs 4 credits per successful request. Credits are only deducted when the API call succeeds and returns product data. Failed requests (errors, rate limits, etc.) do not consume credits.
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)"
{
  "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"
  }
}
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.

Headers

x-api-key
string
required

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

Path Parameters

id
string
required

ID of the oversight product to retrieve data for.

Response

200
application/json

Successful response

The response is of type object.