requests
174,581 rows where method = "POST"
This data as json, copyable, CSV (advanced)
These facets timed out: platform, runType, scheme
dataset 7
- informed-consent 49,927
- do-they-track 35,029
- monkey-april-2024 34,587
- web-monkey-september-2024 20,953
- monkey-july-2023 19,132
- ios-watching-you 9,373
- worrying-confessions 5,580
method 1
- POST · 174,581 ✖
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");