Enumerate every Place of a category within a jurisdiction
Enumerate every canonical Govly Place of a category within a jurisdiction — every county in California, every school district in Texas. Use /api/tools/v1/places/search instead to look up a place by name; this endpoint takes no query and does no relevance ranking. Results are cursor-paginated: keep requesting with meta.nextCursor until it is null, or you have only part of the set. meta.total is the exact size of the full set. Ordering is stable but arbitrary, not alphabetical — sort client-side when presenting a list. At least one of categories or isoCodes is required. isoCodes matches the place’s own code exactly and is not a hierarchy — “US” matches only the country record, so use “US-XX” to enumerate inside a state, while a bare foreign code such as “JP” correctly scopes overseas military installations. Unlike place search, hasRecords here is computed from live data rather than a search index.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Place categories to enumerate, such as county or school_district.
postal_code, county, municipality, region, country, military_installation, school_district Jurisdiction codes to enumerate within, matched exactly (e.g. US-CA). Not hierarchical — "US" matches only the country record. At most 60 codes per call, which is above the 53 needed to cover every US state and territory at once.
60Results per page. Default 25, maximum 100.
x <= 100Opaque cursor from meta.nextCursor of the previous page. A cursor is bound to the filters that produced it and is rejected if you change them.