reports
2 rows where domain_id = 10 sorted by checked_at descending
This data as json, CSV (advanced)
| id | domain_id | input_url | final_url | http_status | server | page_load_ms | consent_phase_ms | total_ms | responses_count | cookies_count | local_storage_count | analytics_score | analytics_verdict | checked_at ▲ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| c9239709-b24e-4835-a7ce-23adc5661315 | 10 10 | https://composer.analys.cloud/ | https://composer.analys.cloud/ | 200 | 46.246.44.6:443 | 11022 | 60 | 11082 | 33 | 0 | 0 | 10 | good | 1781012832183 |
| d0e490d6-4fae-4f73-98ef-5a924b8021d8 | 10 10 | https://composer.analys.cloud/ | https://composer.analys.cloud/ | 200 | 46.246.44.6:443 | 11135 | 23 | 11158 | 37 | 0 | 0 | 1778597654982 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE reports ( id TEXT PRIMARY KEY, domain_id INTEGER NOT NULL REFERENCES domains(id), input_url TEXT NOT NULL, final_url TEXT NOT NULL, http_status INTEGER NOT NULL, server TEXT, page_load_ms INTEGER, consent_phase_ms INTEGER, total_ms INTEGER, responses_count INTEGER, cookies_count INTEGER, local_storage_count INTEGER, analytics_score INTEGER, analytics_verdict TEXT, checked_at INTEGER NOT NULL ); CREATE INDEX idx_reports_domain_checked ON reports(domain_id, checked_at DESC);