requests
224,657 rows where runType = "no-interaction"
This data as json, copyable, CSV (advanced)
These facets timed out: platform, method, scheme
dataset 6
- informed-consent 108,370
- do-they-track 51,553
- ios-watching-you 18,963
- web-monkey-september-2024 17,481
- monkey-july-2023 17,082
- worrying-confessions 11,208
runType 1
- no-interaction · 224,657 ✖
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "requests" (
"id" text,
"dataset" text,
"initiator" text,
"platform" text not null,
"runType" text,
"startTime" text not null,
"method" text not null,
"httpVersion" text,
"endpointUrl" text not null,
"scheme" text,
"host" text not null,
"port" integer,
"path" text not null,
"content" blob,
"headers" text not null,
"cookies" text not null,
foreign key("dataset") references "datasets"("slug"),
primary key("dataset", "id")
) without rowid;
CREATE INDEX "requests_method" on "requests"("method");
CREATE INDEX "requests_dataset" on "requests"("dataset");
CREATE INDEX "requests_runType" on "requests"("runType");
CREATE INDEX "requests_scheme" on "requests"("scheme");
CREATE INDEX "requests_platform" on "requests"("platform");