List and search stores via the API
Common patterns for fetching store data programmatically.
Last updated April 27, 2026
List all stores
curl https://maptera.switchlabs.dev/api/v1/stores \
-H "Authorization: Bearer YOUR_API_KEY"Returns a paginated list of every store on your account. Use the page and limit query parameters to control pagination (limit defaults to 50, max 200).
Search by location
curl "https://maptera.switchlabs.dev/api/v1/stores/nearby?lat=40.7128&lng=-74.0060&radius=10" \
-H "Authorization: Bearer YOUR_API_KEY"Returns stores within a given radius (in miles) of a coordinate. Sorted by distance ascending. Useful for "find stores near me" UX.
Filter by category
curl "https://maptera.switchlabs.dev/api/v1/stores?category=outlet" \
-H "Authorization: Bearer YOUR_API_KEY"Full endpoint reference (parameters, response shape, examples)
Open API docsWas this article helpful?
Related articles
Did this article miss your question?
Email our team and we will help directly.