action wikimedia_get_metrics_pageviews_per_article_project_access_agent_article_g { label: "Get pageview counts for a page." description: "Given a Mediawiki article and a date range, returns a daily timeseries of its pageview\ncounts. You can also filter by access method and/or agent type.\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/per-article/{project}/{access}/{agent}/{article}/{granularity}/{start}/{end}" encoding: json input: { type: "object" properties: { access: { type: "string" } agent: { type: "string" } article: { type: "string" } end: { type: "string" } granularity: { type: "string" } project: { type: "string" } start: { type: "string" } } required: ["access", "agent", "article", "end", "granularity", "project", "start"] additionalProperties: false } output: { type: "object" additionalProperties: true } }