Complete reference for all available endpoints with code examples and response formats.
Manage your monitored products
/api/v1/products
List all products with pagination and filtering
/api/v1/products
List all products with pagination and filtering
curl -X GET "https://api.pricesentry.io/api/v1/products" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
/api/v1/products
Create a new product for monitoring
/api/v1/products
Create a new product for monitoring
curl -X POST "https://api.pricesentry.io/api/v1/products" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "iPhone 15 Pro",
"brand": "Apple",
"sku": "IPHONE15PRO",
"category": "Electronics",
"description": "Latest iPhone model",
"base_price": 999.99,
"currency": "USD",
"url": "https://example.com/iphone-15-pro"
}'
/api/v1/products/{id}
Get detailed information for a specific product
/api/v1/products/{id}
Get detailed information for a specific product
curl -X GET "https://api.pricesentry.io/api/v1/products/{id}" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
/api/v1/products/{id}
Update product information
/api/v1/products/{id}
Update product information
curl -X PUT "https://api.pricesentry.io/api/v1/products/{id}" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "iPhone 15 Pro Updated",
"brand": "Apple",
"base_price": 899.99,
"currency": "USD"
}'
/api/v1/products/{id}
Delete a product from monitoring
/api/v1/products/{id}
Delete a product from monitoring
curl -X DELETE "https://api.pricesentry.io/api/v1/products/{id}" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Manage competitor tracking and analysis
Access price data and historical trends
Manage price alerts and notifications
Manage webhook endpoints for real-time notifications
Get started quickly with our guides and resources.