requests
461,653 rows
This data as json, copyable, CSV (advanced)
method 9
dataset 7
- web-monkey-september-2024 142,038
- informed-consent 113,825
- monkey-april-2024 69,846
- monkey-july-2023 54,220
- do-they-track 51,553
- ios-watching-you 18,963
- worrying-confessions 11,208
runType 4
- monkey 231,541
- no-interaction 224,657
- consent-dialog-accepted 5,226
- consent-dialog-rejected 229
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");