action wikimedia_get_metrics_edited_pages_top_by_net_bytes_difference_project_edi { label: "Get top 100 edited-pages by net bytes-difference." description: "Given a Mediawiki project and a date (day or month), returns a timeseries of the top 100\nedited-pages by net bytes-difference. You can filter by editor-type (all-editor-types,\nanonymous, group-bot, name-bot, user) or page-type (all-page-types, content or non-content).\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/edited-pages/top-by-net-bytes-difference/{project}/{editor-type}/{page-type}/{year}/{month}/{day}" encoding: json input: { type: "object" properties: { day: { type: "string" } "editor-type": { type: "string" } month: { type: "string" } "page-type": { type: "string" } project: { type: "string" } year: { type: "string" } } required: ["day", "editor-type", "month", "page-type", "project", "year"] additionalProperties: false } output: { type: "object" additionalProperties: true } }