curl -X GET "https://api.rxradar.xyz/v1/snapshots?gtin=3401351277399&days=30" \
-H "Authorization: Bearer rx_YOUR_API_KEY"
{
"product_id": null,
"gtin": "3401351277399",
"network": null,
"days": 7,
"data": [
{
"id": 5638,
"product_id": 29,
"gtin": "3401351277399",
"collected_at": "2026-04-29T17:34:54",
"price": {
"current": 12.95,
"original": 14.50,
"range": null,
"currency": "USD"
},
"stock": {
"available": true,
"label": "In stock"
},
"rating": {
"value": 4.6,
"count": 28
},
"rank": {
"position": 12,
"page": 1,
"page_size": 30
},
"promo": {
"text": "-10%",
"slug": "spring-promo",
"type": "percentage",
"badge": "Promotion",
"loyalty": null
},
"network": "network-a",
"store": "store-a.com"
}
],
"total": 4,
"page": 1,
"per_page": 50,
"pages": 1
}
Snapshots
List Snapshots
List product snapshots with filters
GET
/
v1
/
snapshots
curl -X GET "https://api.rxradar.xyz/v1/snapshots?gtin=3401351277399&days=30" \
-H "Authorization: Bearer rx_YOUR_API_KEY"
{
"product_id": null,
"gtin": "3401351277399",
"network": null,
"days": 7,
"data": [
{
"id": 5638,
"product_id": 29,
"gtin": "3401351277399",
"collected_at": "2026-04-29T17:34:54",
"price": {
"current": 12.95,
"original": 14.50,
"range": null,
"currency": "USD"
},
"stock": {
"available": true,
"label": "In stock"
},
"rating": {
"value": 4.6,
"count": 28
},
"rank": {
"position": 12,
"page": 1,
"page_size": 30
},
"promo": {
"text": "-10%",
"slug": "spring-promo",
"type": "percentage",
"badge": "Promotion",
"loyalty": null
},
"network": "network-a",
"store": "store-a.com"
}
],
"total": 4,
"page": 1,
"per_page": 50,
"pages": 1
}
A snapshot is a complete capture of a product’s state at a point in time: price, availability, ranking, promotions, etc.
Page number
Results per page (max: 100)
Filter by product ID
Filter by EAN code
Filter by network
Snapshots from the last N days (max: 90)
curl -X GET "https://api.rxradar.xyz/v1/snapshots?gtin=3401351277399&days=30" \
-H "Authorization: Bearer rx_YOUR_API_KEY"
{
"product_id": null,
"gtin": "3401351277399",
"network": null,
"days": 7,
"data": [
{
"id": 5638,
"product_id": 29,
"gtin": "3401351277399",
"collected_at": "2026-04-29T17:34:54",
"price": {
"current": 12.95,
"original": 14.50,
"range": null,
"currency": "USD"
},
"stock": {
"available": true,
"label": "In stock"
},
"rating": {
"value": 4.6,
"count": 28
},
"rank": {
"position": 12,
"page": 1,
"page_size": 30
},
"promo": {
"text": "-10%",
"slug": "spring-promo",
"type": "percentage",
"badge": "Promotion",
"loyalty": null
},
"network": "network-a",
"store": "store-a.com"
}
],
"total": 4,
"page": 1,
"per_page": 50,
"pages": 1
}
⌘I