get_nearby_campuses
Find campuses within a specified radius of a campus or coordinates, returning distance and school type flags. Filter by charter or private status and paginate through results.
Instructions
Find campuses within a radius (miles) of a campus or coordinates; returns distance_miles plus charter/private flags so you can filter. Example: coords (-95.36, 29.83) with radius 10 to find nearby charters; filter results by charter/is_private in the response. Results paginate with cursor/next_cursor and can include total_matches when include_total=true. Responses include payload.table and payload.exports for deterministic tables and CSV/JSON export; if payload.completeness.needs_follow_up or pagination.has_more is true, follow next_tool_call before finalizing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return. | |
| cursor | No | Pagination cursor (number of matched campuses to skip). | |
| latitude | No | Latitude (required if identifier not provided). | |
| longitude | No | Longitude (required if identifier not provided). | |
| identifier | No | Target campus name or number to search around. | |
| radius_miles | No | Search radius in miles. | |
| include_total | No | Include total_matches for pagination awareness. |