Documentos
Ctrl+K Pesquisar Alt+[Alt+] Guias
Obter chave da API

API · Shopify

API Store tracker

Track stores in your account and remove them when needed.


Programmatic API (API key)

GET /api/v1/store-tracker returns tracker usage for the API-key owner:

  • amount - number of stores currently tracked.
  • max_allowed - plan cap exposed by the tracker API surface.

Legacy alias still accepted: GET /api/store-tracker.

This endpoint is read-only. Use the dashboard session routes below to add or remove tracked stores.


Dashboard session routes (track / delete)

These routes are used by the Sales tracker UI and require a logged-in browser session.

Track a store

POST /api/storetracker/add

Form field:

  • storeurl - the storefront URL/domain to track.

Delete a tracked store

POST /api/salestracker/delete

Form field:

  • shopid - internal shop identifier for the tracked store.

Read tracked count (session)

GET /api/storetracker/amount-stores-tracked returns the same shape used by the dashboard (amount, max_allowed).


See also