Developer API Docs

Integrate competitor visual intelligence with your internal dashboards

Build custom workflows, download screenshot archives programmatically, or query price updates using the Screenify REST API.

Authentication

Pass your private API Key as a bearer token in the authorization header of every request:

Authorization: Bearer sec_live_...

Example Request: List Competitor Changes

GET /v1/changes?store_url=competitor.com HTTP/1.1
Host: api.screenify.io
Authorization: Bearer sec_live_...

Example Response

{
  "object": "list",
  "data": [
    {
      "id": "chg_948271",
      "type": "price_change",
      "feature": "Catalog Price Delta",
      "meta": {
        "item": "Classic Sneaker",
        "previous_price": 89.00,
        "new_price": 79.00
      },
      "detected_at": "2026-06-24T17:36:06Z"
    }
  ]
}