Talk:Getting started with Wikimedia APIs

(Redirected from Talk:Documentation/Getting started)
Latest comment: 13 days ago by APaskulin (WMF) in topic WORLD EXPLORER

Welcome to the discussion for the Getting started page! To leave a comment, select Edit.

Incorrect JavaScript example

Hey @APaskulin (WMF)! It seems that in these two lines:

let month = today.getMonth() + 1; 
let day = today.getDate();

The logic is incorrect, it should be instead:

let month = String(today.getMonth() + 1).padStart(2,'0'); 
let day = String(today.getDate()).padStart(2,'0');

as seen on this page API reference/Feed/Featured content - API Portal (wikimedia.org) Aranzate (talk) 05:30, 6 April 2023 (UTC)Reply

Great catch! Thanks, @Aranzate! I've updated the code sample on this page. If you're interested in contributing to these docs, I'd be happy to add you to the documentation editors group, just let me know by leaving a comment on Talk:Community/Contributing. --APaskulin (WMF) (talk) 16:32, 6 April 2023 (UTC)Reply

WORLD EXPLORER

World Explorer App is a Flutter-based educational and travel application designed to help users explore countries, cultures, tourist attractions, and historical information around the world.

The application uses the Wikipedia API to provide educational content such as history, language, culture, and important information about countries and places. The app is intended for students, travelers, researchers, and educational users. Muadz Muadz (talk) 00:03, 21 May 2026 (UTC)Reply

Hi @Muadz Muadz, Thanks for sharing your app! Please note that the API Portal is being shut down next month. For more information and new documentation links, see wikitech:API Portal/Deprecation. Let me know if you have any questions! -- APaskulin (WMF) (talk) 19:16, 27 May 2026 (UTC)Reply