action wikimedia_get_metrics_pageviews_top_project_access_year_month_day { label: "Get the most viewed articles for a project." description: "Lists the 1000 most viewed articles for a given project and timespan (month or day).\nYou can filter by access method.\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/top/{project}/{access}/{year}/{month}/{day}" encoding: json input: { type: "object" properties: { access: { type: "string" } day: { type: "string" } month: { type: "string" } project: { type: "string" } year: { type: "string" } } required: ["access", "day", "month", "project", "year"] additionalProperties: false } output: { type: "object" additionalProperties: true } }