Skip to main content
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
integer
default:"1"
Page number
per_page
integer
default:"50"
Results per page (max: 100)
product_id
integer
Filter by product ID
gtin
string
Filter by EAN code
network
string
Filter by network
days
integer
default:"7"
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
}