action wikimedia_get_metrics_pageviews_top_by_country_project_access_year_month { label: "Get pageviews by country and access method." description: "Lists the pageviews to this project, split by country of origin for a given month.\nBecause of privacy reasons, pageviews are given in a bucketed format, and countries\nwith less than 100 views do not get reported.\nStability: [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/pageviews/top-by-country/{project}/{access}/{year}/{month}" encoding: json input: { type: "object" properties: { access: { type: "string" } month: { type: "string" } project: { type: "string" } year: { type: "string" } } required: ["access", "month", "project", "year"] additionalProperties: false } output: { type: "object" additionalProperties: true } }