From db451705f1eba4135c13ae1fa3786e6cd117ed0d Mon Sep 17 00:00:00 2001 From: tiennm99 Date: Sat, 9 May 2026 22:30:09 +0700 Subject: [PATCH] feat: add homepage url to root response --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index 86b93f3..2943df3 100644 --- a/src/index.js +++ b/src/index.js @@ -27,6 +27,7 @@ app.post('/:method', async (req, res) => { app.get('/', (req, res) => { res.json({ message: 'Google Play Scraper', + homepage: 'https://github.com/tiennm99/google-play-scraper-api', documentation: 'https://github.com/facundoolano/google-play-scraper' }); });