action wikimedia_get_metrics_bytes_difference_net_per_page_project_page_title_edi { label: "Get the sum of net text bytes difference per page." description: "Given a Mediawiki project, a page-title prefixed with canonical namespace (for\ninstance 'User:Jimbo_Wales') and a date range, returns a timeseries of bytes\ndifference net sums. You can filter by editors-type (all-editor-types, anonymous,\ngroup-bot, name-bot, user). You can choose between daily and monthly granularity as well.\n\n- Stability: [experimental](https://www.mediawiki.org/wiki/API_versioning#Experimental)\n- Rate limit: 25 req/s\n- License: Data accessible via this endpoint is available under the\n [CC0 1.0 license](https://creativecommons.org/publicdomain/zero/1.0/).\n" provider: wikimedia method: GET path: "/metrics/bytes-difference/net/per-page/{project}/{page-title}/{editor-type}/{granularity}/{start}/{end}" encoding: json input: { type: "object" properties: { "editor-type": { type: "string" } end: { type: "string" } granularity: { type: "string" } "page-title": { type: "string" } project: { type: "string" } start: { type: "string" } } required: ["editor-type", "end", "granularity", "page-title", "project", "start"] additionalProperties: false } output: { type: "object" additionalProperties: true } }