Integration not detected
If your integration panel still shows Not detected after you’ve deployed, this page explains why and how to resolve it.How detection works
There are three detection paths depending on your integration method: 1. Scan (homepage crawl) The next time InstantSchema scans your site, it runsdetectIntegration against your homepage’s raw HTML. No JavaScript is executed — it looks for specific signatures in the source:
- CDN script:
/v1/loader.js+data-project-id="YOUR_PROJECT_ID"in a script tag - Inline script: fetch URL
/api/v1/structured-data?project=YOUR_PROJECT_IDin the page source - SDK / npm:
data-instantschema="1"on a<script type="application/ld+json">tag
data-instantschema="1" to your rendered tags. Without that marker, these methods cannot be detected automatically. Use the Mark as active button in the integration panel.
Common causes
Tag or snippet is not on the homepage
Detection runs against your homepage (/). If you only added the script tag to inner pages, the dashboard won’t detect it. Add the tag to a layout or template that renders on every page, including the root.
Wrong project ID
Check thatdata-project-id (CDN) or the project= query parameter (inline script) exactly matches the Project ID shown in your dashboard. UUIDs are case-sensitive.
Code not deployed yet
The poll hits your live site, not localhost. Make sure your changes are deployed before checking the dashboard.Detection ran before deploy completed
If the poll fired during a rolling deploy, it may have hit an instance that hadn’t restarted yet. Wait a few seconds and refresh the dashboard — the poll will retry automatically.Using GTM or custom API without a marker
Neither GTM nor unmarked custom API schemas can be detected from the HTML source. Use Mark as active in the integration panel after you’ve verified the integration is live.Step-by-step resolution
- Open your live homepage in a browser and view the page source (
Ctrl+U/Cmd+Option+U). - Search for your Project ID. If it’s not there, the tag hasn’t been deployed or is on the wrong template.
- Check the exact attribute name:
data-project-idfor CDN,project=in the fetch URL for inline script,data-instantschema="1"on the schema tag for SDK. - If everything looks correct in source, wait 10–15 seconds and check the dashboard again — the poll will detect it on the next cycle.
- For GTM or custom API: click Mark as active in the integration panel once you’ve confirmed the integration is running.