GeoDB Cities

免费增值
Verified
通过 Michael Mogley | 已更新 2 महीने पहले | Data
人气

9.9 / 10

延迟

77ms

服务等级

100%

Health Check

100%

返回所有讨论

Get all the available countries

Rapid account: Andredev 95
andredev95
एक महीने पहले

Hi!

I’m trying to build a dropdown input with html and vanilla js that shows a list of all known countries. However, when I do a fetch AJAX fetch call to https://wft-geo-db.p.rapidapi.com/v1/geo/countries, I’m returned the first 5 countries only. To get more, I have to set the optional limit parameter to a given number. In the documentation, it is clearly stated that if no criteria are set, you will get back all known countries.

What am I doing wrong?

Rapid account: Wirefreethought
wirefreethought Commented 21 दिन पहले

Sorry for the late reply. RapidAPI did not send me a new-thread notification.

Yes you will get back all known countries, but you still need to page results. The way to page them is to use offset in combination with limit.

For example, first 5 results:

GET /v1/geo/countries?offset=0&limit=5

Next 5 results:

GET /v1/geo/countries?offset=5&limit=5

If you want to set a higher limit to get back more results in a single page, you’ll need to upgrade to the PRO plan (which currently offers a max limit = 100).

加入讨论 - 在下面添加评论:

登录/注册以发布新的评论