action wikimedia_get_metrics_registered_users_new_project_granularity_start_end { label: "Get newly registered users counts for a project." description: "Given a Mediawiki project and a date range, returns a timeseries of its newly registered\nusers counts. You can choose between daily and monthly granularity. The newly registered\nusers value is computed with self-created users only, not auto-login created ones.\n\n- Stability: [experimental](https://www.mediawiki.org/wiki/API_versioning#Experimental)\n- Rate limit: 25 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/registered-users/new/{project}/{granularity}/{start}/{end}" encoding: json input: { type: "object" properties: { end: { type: "string" } granularity: { type: "string" } project: { type: "string" } start: { type: "string" } } required: ["end", "granularity", "project", "start"] additionalProperties: false } output: { type: "object" additionalProperties: true } }