action wikimedia_get_metrics_legacy_pagecounts_aggregate_project_access_site_gran { label: "get_metrics_legacy_pagecounts_aggregate_project_access_site_granularity_start_end" description: "Given a project and a date range, returns a timeseries of pagecounts.\nYou can filter by access site (mobile or desktop) and you can choose between monthly,\ndaily and hourly granularity as well.\n\n- Stability: [experimental](https://www.mediawiki.org/wiki/API_versioning#Experimental)\n- Rate limit: 100 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/legacy/pagecounts/aggregate/{project}/{access-site}/{granularity}/{start}/{end}" encoding: json input: { type: "object" properties: { "access-site": { type: "string" } end: { type: "string" } granularity: { type: "string" } project: { type: "string" } start: { type: "string" } } required: ["access-site", "end", "granularity", "project", "start"] additionalProperties: false } output: { type: "object" additionalProperties: true } }