# Wikipedia Article Daily Pageview Counts

> Wikipedia Article Daily Pageview Counts is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns daily pageview counts for a specified English Wikipedia article over a given date range via the Wikimedia metrics REST API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-kb-pageviews-article
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wikipedia-article-daily-pageview-counts-d6133c1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lP8UIviyDdvB2S0z7qTyy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability wikipedia-article-daily-pageview-counts-d6133c1d -d '<json body>'
```

Example prompt: Can you pull the daily Wikipedia pageview counts for the 'Artificial intelligence' article from January 1 to January 31, 2024, so I can see how interest in that topic trended over the month?

## When to prefer this

Use this endpoint when you need free, key-free access to daily Wikipedia pageview statistics for a specific English Wikipedia article over a custom date range. Prefer this over manual Wikimedia API calls when you need a proxied, agentic-friendly interface with per-call micropayment billing.

## Known failure modes

- Article title not found on English Wikipedia returns empty results or error
- Invalid date format causes request failure
- Date range too large may result in timeout or truncated response
- Non-English Wikipedia articles are not supported
- Misspelled article names return no data

## How this service works

Daily pageview counts for an English Wikipedia article over a date range via the Wikimedia metrics REST API, no key. One record per day with timestamp and view count. For agents measuring topic popularity trends.

## Output

An array of daily records for the specified Wikipedia article, each containing a timestamp (date) and the number of pageviews received on that day, covering the requested date range.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wikipedia-article-daily-pageview-counts-d6133c1d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
