action wikimedia_get_metrics_pageviews_aggregate_project_access_agent_granularity { label: "Get pageview counts for a project." description: "Given a date range, returns a timeseries of pageview counts. You can filter by project,\naccess method and/or agent type. You can choose between daily and hourly granularity\nas well.\n\n- Stability: [stable](https://www.mediawiki.org/wiki/API_versioning#Stable)\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/pageviews/aggregate/{project}/{access}/{agent}/{granularity}/{start}/{end}" encoding: json input: { type: "object" properties: { access: { type: "string" } agent: { type: "string" } end: { type: "string" } granularity: { type: "string" } project: { type: "string" } start: { type: "string" } } required: ["access", "agent", "end", "granularity", "project", "start"] additionalProperties: false } output: { type: "object" additionalProperties: true } }