requests
235,854 rows where platform = "android"
This data as json, copyable, CSV (advanced)
These facets timed out: runType, method, scheme
dataset 5
- monkey-april-2024 69,846
- informed-consent 66,109
- do-they-track 51,553
- monkey-july-2023 37,138
- worrying-confessions 11,208
platform 1
- android · 235,854 ✖
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");