The playground
Try any of 1042 endpoints — live.
Pick an endpoint, load a working example, tweak the params, and send — no signup to try. Results render the way the data deserves; raw JSON, headers & code are one tab away.
Playground demo key · api.reefapi.com
post/wikipedia/v1/geosearch1 credit
Wikipedia pages near a coordinate or around a title
Working example
Parameters
Latitude. Provide lat+lon, OR `coord`, OR `title` for geosearch. (-90–90)
Longitude (pairs with lat). (-180–180)
'lat,lon' string — alternative to separate lat/lon params.
Find pages near THIS article's coordinates (alternative to lat/lon/coord).
Search radius in metres (10-10000); clamped. (10–10000)
Max results (1-50, default 10); clamped. (1–50)
Wikipedia language edition code (en, de, fr, ja, … 360+ editions). Default en.
request preview
curl -X POST https://api.reefapi.com/wikipedia/v1/geosearch \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"lat":"48.8584","lon":"2.2945","radius":"1000"}'Hit Send to run this endpoint live.