# Wikimedia Pageviews โ€” Zapi reference > Kunjungan harian artikel Wikipedia โ€” proksi perhatian publik terhadap satu perusahaan atau tema. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/finance/wikimedia - Endpoint catalog: https://zpi.web.id/category/finance - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Wikimedia Pageviews **Category:** finance ยท **Slug:** `wikimedia` **Detail page:** https://zpi.web.id/api/finance/wikimedia Kunjungan harian artikel Wikipedia โ€” proksi perhatian publik terhadap satu perusahaan atau tema. **Tags:** wikipedia, pageviews, alternative-data, finance ### Pageviews Deret kunjungan harian satu artikel, plus total dan rata-ratanya. Ini data alternatif, bukan data pasar. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/finance:wikimedia/pageviews` - **Cache TTL:** 21600s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `article` | string | query | yes | Wikipedia article title. Required. | | `project` | string | query | no | Wikipedia project. Default en.wikipedia. | | `from` | string | query | no | Start date (YYYY-MM-DD). Default 30 days back. | | `to` | string | query | no | End date (YYYY-MM-DD). Default today. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/finance:wikimedia/pageviews?article=Apple%20Inc.&project=en.wikipedia&from=2026-07-01&to=2026-08-01" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/finance:wikimedia/pageviews?article=Apple%20Inc.&project=en.wikipedia&from=2026-07-01&to=2026-08-01", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/finance:wikimedia/pageviews?article=Apple%20Inc.&project=en.wikipedia&from=2026-07-01&to=2026-08-01", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "to": "2026-08-01", "from": "2026-07-25", "count": 8, "items": [ { "date": "2026-08-01", "views": 5141 }, { "date": "2026-07-31", "views": 5937 }, { "date": "2026-07-30", "views": 5838 }, { "date": "2026-07-29", "views": 5933 }, { "date": "2026-07-28", "views": 6275 }, { "date": "2026-07-27", "views": 5760 }, { "date": "2026-07-26", "views": 5092 }, { "date": "2026-07-25", "views": 4952 } ], "source": "wikimedia", "article": "Apple_Inc.", "project": "en.wikipedia", "totalViews": 44928, "averageViews": 5616 } ``` --- _Generated: 2026-08-08T12:02:56.806Z_