Skip to main content

Easily store and query
your own location data

Simple platform to import and edit map data and seamlessly match it with physical points via API.

Features
Map Editor
Create polygons, points, and custom regions visually on an interactive map. No code required to define your geographic boundaries.
Data Import
Import GeoJSON files of complex geometry to build APIs that reference your existing GIS data. Seamless integration.
API-First Design
Query based on addresses or coordinates to enrich your data with location information. RESTful and developer-friendly.
Developer Experience

Built for developers
with a lot going on

Our RESTful API is designed to be intuitive and powerful. Get started in minutes and query any data set you can find.

query-example.js
1// Query features by coordinates
2const params = new URLSearchParams({
3  lat: '47.603',
4  lng: '-122.330',
5});
6 
7const response = await fetch(
8  `https://app.regionflex.com/api/v1/query?${params}`,
9  {
10    headers: {
11      'Authorization': 'Bearer YOUR_API_KEY',
12    },
13  }
14);
15 
16const { data } = await response.json();
17// [{ name: "Seattle City Council District 7", ... }]
Try it

Try It Out

Enter an address to see the API in action