Mapbox Search Integration Skill
Expert guidance for implementing Mapbox search functionality in applications. Covers the complete workflow from asking the right discovery questions, selecting the appropriate search product, to implementing production-ready integrations following best practices from the Mapbox search team.
Use This Skill When
User says things like:
- "I need to add search to my map"
- "I need a search bar for my mapping app"
- "How do I implement location search?"
- "I want users to search for places/addresses"
- "I need geocoding in my application"
This skill complements mapbox-search-patterns:
mapbox-search-patterns = Tool and parameter selection
mapbox-search-integration = Complete implementation workflow
Discovery Phase: Ask the Right Questions
Before jumping into code, ask these questions to understand requirements:
Question 1: What are users searching for?
Ask: "What do you want users to search for?"
Common answers and implications:
- "Addresses" → Use Search Box API (the default for interactive address search, including geocoding). Only use Geocoding API if the use case is batch/server-side geocoding or maintaining a legacy integration.
- "Points of interest / businesses" → POI search, use Search Box API with category search
- "Both addresses and POIs" → Search Box API
- "Specific types of POIs" (restaurants, hotels, etc.) → Search Box API
- "Countries, cities, postcodes or neighborhoods" → Search Box API for interactive search; Geocoding API only for batch/server-side geocoding
- "Custom locations" (user-created places) → May need custom data + search integration
Follow-up if not stated initially: "Are your users searching for points of interest data? Restaurants, stores, categories of businesses?"
Implications:
- "Yes, POIs are included" → Use the Search Box API
- "No, the user does not need POI search" → Still default to Search Box API for interactive/autocomplete use cases. Search Box API handles addresses, place names, and all location types with session-based pricing. Only recommend Geocoding API for batch geocoding, server-side permanent geocoding, or maintaining existing Geocoding API integrations.
Question 2: What's the geographic scope?
Ask: "Where will users be searching?"
Common answers and implications:
- "Single country" (e.g., "only USA") → Use
country parameter, better results, lower cost
- "Specific region" → Use
bbox parameter for bounding box constraint
- "Global" → No country restriction, but may need language parameter
- "Multiple specific countries" → Use
country array parameter
Follow-up: "Do you need to limit results to a specific area?" (delivery zone, service area, etc.)
Question 3: What's the search interaction pattern?
Ask: "How will users interact with search?"
Common answers and implications:
- "Search-as-you-type / autocomplete" → Use Search Box API with
auto_complete: true and session-based pricing (most cost-efficient for autocomplete). Implement debouncing.
- "Search button / final query" → Can use either API, no autocomplete needed
- "Both" (autocomplete + refine) → Two-stage search, autocomplete then detailed results
- "Voice input" → Consider speech-to-text integration, handle longer queries
Question 4: What platform?
Ask: "What platform is this for?"
Common answers and implications:
- "Web application" → Mapbox Search JS (easiest), or direct API calls for advanced cases
- "iOS app" → Search SDK for iOS (recommended), or direct API integration for advanced cases
- "Android app" → Search SDK for Android (recommended), or direct API integration for advanced cases
- "Multiple platforms" → Platform-specific SDKs (recommended), or direct API approach for consistency
- "React app" → Mapbox Search JS React (easiest with UI), or Search JS Core for custom UI. Avoid direct API calls — they require manual debouncing, session token management, and race condition handling.
- "Vue / Angular / Other framework" → Mapbox Search JS Core or Web. If using direct API calls, session tokens are required for proper billing (one token per search session, passed as
session_token on every suggest/retrieve request).
Question 5: How will results be used?
Ask: "What happens when a user selects a result?"
Common answers and implications:
- "Fly to location on map" → Need coordinates, map integration
- "Show details / info" → Need to retrieve and display result properties
- "Fill form fields" → Need to parse address components
- "Start navigation" → Need coordinates, integrate with directions
- "Multiple selection" → Need to handle selection state, possibly show markers
Question 6: Expected usage volume?
Ask: "How many searches do you expect per month?"
Implications:
- Low volume (< 10k) → Free tier sufficient, simple implementation
- Medium volume (10k-100k) → Consider caching, optimize API calls
- High volume (> 100k) → Implement debouncing, caching, batch operations, monitor costs
Product Selection Decision Tree
Based on discovery answers, recommend the right product:
Key principle: Search Box API is the default choice for virtually all interactive search use cases, including address search, geocoding, autocomplete, and POI search. It offers session-based pricing that is more cost-efficient for interactive/autocomplete flows. Only recommend Geocoding API for the narrow cases listed below.
Search Box API (DEFAULT)
Use when (any of these):
- User needs interactive address search or autocomplete (this IS geocoding — Search Box API handles it)
- User needs POI / category search
- User needs any end-user-facing search UI
- User wants session-based pricing (more cost-efficient for autocomplete/interactive use)
- User is building a web, iOS, or Android app with a search bar
Prefer SDKs over direct API calls for web integration:
- Mapbox Search JS (SDK) - Recommended for web integration, with three components:
- Search JS React - Easy search integration via React library with UI
- Search JS Web - Easy search integration via Web Components with UI
- Search JS Core - JavaScript (node or web) wrapper for API, build your own UI
- Search Box API (REST) - Direct API integration, for advanced/custom cases
- Search SDK for iOS - Native iOS integration
- Search SDK for Android - Native Android integration
Geocoding API (SPECIALIZED)
Use ONLY when:
- Batch geocoding large lists of addresses (server-side)
- Permanent/stored geocoding results (server-side, where results are persisted)
- Maintaining an existing Geocoding API integration (migration not justified)
- No interactive/user-facing search needed
Do NOT recommend Geocoding API when:
- The user wants a search bar, autocomplete, or interactive address lookup — use Search Box API instead
- The user says "geocoding" but describes an interactive search flow — use Search Box API instead
Reference Files
Load the relevant reference based on the user's platform and needs:
Web (Search JS React / Web / Core / Direct API) → Load references/web-search-js.md
- When: User is building a web app (vanilla JS, any framework except React-specific patterns)
React Integration → Load references/react-search.md
- When: User is building a React app specifically
iOS → Load references/ios-search.md
- When: User is building an iOS app (Swift/UIKit/SwiftUI)
Android → Load references/android-search.md
- When: User is building an Android app (Kotlin/Java)
Node.js → Load references/nodejs-search.md
- When: User needs server-side search (Express, serverless, backend API)
Best Practices → Load references/best-practices.md
- When: Implementing search for the first time, or optimizing an existing implementation
- Covers: debouncing, session tokens, geographic filtering, error handling, accessibility, caching, token security
Common Pitfalls → Load references/pitfalls.md
- When: Debugging issues, reviewing code, or during code review
- Covers: no debouncing, missing session tokens, no geo context, poor mobile UX, race conditions
Framework Hooks → Load references/framework-hooks.md
- When: Building custom hooks (React) or composables (Vue) around Search JS Core
Testing and Monitoring → Load references/testing-monitoring.md
- When: Writing tests or setting up production monitoring/analytics
Checklist: Production-Ready Search
Before launching, verify:
Configuration:
Implementation:
UX:
Performance:
Testing:
Monitoring:
Integration with Other Skills
Works with:
- mapbox-search-patterns: Parameter selection and optimization
- mapbox-web-integration-patterns: Framework-specific patterns
- mapbox-token-security: Token management and security
- mapbox-web-performance-patterns: Optimizing search performance
Resources
Quick Decision Guide
User says: "I need location search"
- Ask discovery questions (Questions 1-6 above)
- Recommend product:
- Search Box API (default for all interactive/user-facing search, including address geocoding)
- Geocoding API only for batch/server-side/permanent geocoding
- Platform SDK preferred (Search JS for web, native SDKs for mobile)
- Implement with:
- ✅ Debouncing
- ✅ Session tokens
- ✅ Geographic filtering
- ✅ Error handling
- ✅ Good UX
- Test thoroughly
- Monitor in production
Remember: The best search implementation asks the right questions first, then builds exactly what the user needs - no more, no less.
1---2name: mapbox-search-integration3description: Complete workflow for implementing Mapbox search in applications - from discovery questions to production-ready integration with best practices4---56# Mapbox Search Integration Skill78Expert guidance for implementing Mapbox search functionality in applications. Covers the complete workflow from asking the right discovery questions, selecting the appropriate search product, to implementing production-ready integrations following best practices from the Mapbox search team.910## Use This Skill When1112User says things like:1314- "I need to add search to my map"15- "I need a search bar for my mapping app"16- "How do I implement location search?"17- "I want users to search for places/addresses"18- "I need geocoding in my application"1920**This skill complements `mapbox-search-patterns`:**2122- `mapbox-search-patterns` = Tool and parameter selection23- `mapbox-search-integration` = Complete implementation workflow2425## Discovery Phase: Ask the Right Questions2627Before jumping into code, ask these questions to understand requirements:2829### Question 1: What are users searching for?3031**Ask:** "What do you want users to search for?"3233**Common answers and implications:**3435- **"Addresses"** → **Use Search Box API** (the default for interactive address search, including geocoding). Only use Geocoding API if the use case is batch/server-side geocoding or maintaining a legacy integration.36- **"Points of interest / businesses"** → POI search, use Search Box API with category search37- **"Both addresses and POIs"** → Search Box API38- **"Specific types of POIs"** (restaurants, hotels, etc.) → Search Box API39- **"Countries, cities, postcodes or neighborhoods"** → Search Box API for interactive search; Geocoding API only for batch/server-side geocoding40- **"Custom locations"** (user-created places) → May need custom data + search integration4142**Follow-up if not stated initially**: "Are your users searching for points of interest data? Restaurants, stores, categories of businesses?"4344**Implications:**4546- **"Yes, POIs are included"** → Use the Search Box API47- **"No, the user does not need POI search"** → **Still default to Search Box API** for interactive/autocomplete use cases. Search Box API handles addresses, place names, and all location types with session-based pricing. Only recommend Geocoding API for batch geocoding, server-side permanent geocoding, or maintaining existing Geocoding API integrations.4849### Question 2: What's the geographic scope?5051**Ask:** "Where will users be searching?"5253**Common answers and implications:**5455- **"Single country"** (e.g., "only USA") → Use `country` parameter, better results, lower cost56- **"Specific region"** → Use `bbox` parameter for bounding box constraint57- **"Global"** → No country restriction, but may need language parameter58- **"Multiple specific countries"** → Use `country` array parameter5960**Follow-up:** "Do you need to limit results to a specific area?" (delivery zone, service area, etc.)6162### Question 3: What's the search interaction pattern?6364**Ask:** "How will users interact with search?"6566**Common answers and implications:**6768- **"Search-as-you-type / autocomplete"** → **Use Search Box API** with `auto_complete: true` and session-based pricing (most cost-efficient for autocomplete). Implement debouncing.69- **"Search button / final query"** → Can use either API, no autocomplete needed70- **"Both"** (autocomplete + refine) → Two-stage search, autocomplete then detailed results71- **"Voice input"** → Consider speech-to-text integration, handle longer queries7273### Question 4: What platform?7475**Ask:** "What platform is this for?"7677**Common answers and implications:**7879- **"Web application"** → Mapbox Search JS (easiest), or direct API calls for advanced cases80- **"iOS app"** → Search SDK for iOS (recommended), or direct API integration for advanced cases81- **"Android app"** → Search SDK for Android (recommended), or direct API integration for advanced cases82- **"Multiple platforms"** → Platform-specific SDKs (recommended), or direct API approach for consistency83- **"React app"** → Mapbox Search JS React (easiest with UI), or Search JS Core for custom UI. Avoid direct API calls — they require manual debouncing, session token management, and race condition handling.84- **"Vue / Angular / Other framework"** → Mapbox Search JS Core or Web. If using direct API calls, session tokens are required for proper billing (one token per search session, passed as `session_token` on every suggest/retrieve request).8586### Question 5: How will results be used?8788**Ask:** "What happens when a user selects a result?"8990**Common answers and implications:**9192- **"Fly to location on map"** → Need coordinates, map integration93- **"Show details / info"** → Need to retrieve and display result properties94- **"Fill form fields"** → Need to parse address components95- **"Start navigation"** → Need coordinates, integrate with directions96- **"Multiple selection"** → Need to handle selection state, possibly show markers9798### Question 6: Expected usage volume?99100**Ask:** "How many searches do you expect per month?"101102**Implications:**103104- **Low volume** (< 10k) → Free tier sufficient, simple implementation105- **Medium volume** (10k-100k) → Consider caching, optimize API calls106- **High volume** (> 100k) → Implement debouncing, caching, batch operations, monitor costs107108## Product Selection Decision Tree109110Based on discovery answers, recommend the right product:111112> **Key principle: Search Box API is the default choice for virtually all interactive search use cases**, including address search, geocoding, autocomplete, and POI search. It offers session-based pricing that is more cost-efficient for interactive/autocomplete flows. Only recommend Geocoding API for the narrow cases listed below.113114### Search Box API (DEFAULT)115116**Use when (any of these):**117118- User needs interactive address search or autocomplete (this IS geocoding — Search Box API handles it)119- User needs POI / category search120- User needs any end-user-facing search UI121- User wants session-based pricing (more cost-efficient for autocomplete/interactive use)122- User is building a web, iOS, or Android app with a search bar123124**Prefer SDKs over direct API calls for web integration:**125126- **Mapbox Search JS** (SDK) - Recommended for web integration, with three components:127 - **Search JS React** - Easy search integration via React library with UI128 - **Search JS Web** - Easy search integration via Web Components with UI129 - **Search JS Core** - JavaScript (node or web) wrapper for API, build your own UI130- **Search Box API** (REST) - Direct API integration, for advanced/custom cases131- **Search SDK for iOS** - Native iOS integration132- **Search SDK for Android** - Native Android integration133134### Geocoding API (SPECIALIZED)135136**Use ONLY when:**137138- Batch geocoding large lists of addresses (server-side)139- Permanent/stored geocoding results (server-side, where results are persisted)140- Maintaining an existing Geocoding API integration (migration not justified)141- No interactive/user-facing search needed142143**Do NOT recommend Geocoding API when:**144145- The user wants a search bar, autocomplete, or interactive address lookup — use Search Box API instead146- The user says "geocoding" but describes an interactive search flow — use Search Box API instead147148## Reference Files149150Load the relevant reference based on the user's platform and needs:151152- **Web (Search JS React / Web / Core / Direct API)** → Load `references/web-search-js.md`153 - When: User is building a web app (vanilla JS, any framework except React-specific patterns)154- **React Integration** → Load `references/react-search.md`155 - When: User is building a React app specifically156- **iOS** → Load `references/ios-search.md`157 - When: User is building an iOS app (Swift/UIKit/SwiftUI)158- **Android** → Load `references/android-search.md`159 - When: User is building an Android app (Kotlin/Java)160- **Node.js** → Load `references/nodejs-search.md`161 - When: User needs server-side search (Express, serverless, backend API)162163- **Best Practices** → Load `references/best-practices.md`164 - When: Implementing search for the first time, or optimizing an existing implementation165 - Covers: debouncing, session tokens, geographic filtering, error handling, accessibility, caching, token security166- **Common Pitfalls** → Load `references/pitfalls.md`167 - When: Debugging issues, reviewing code, or during code review168 - Covers: no debouncing, missing session tokens, no geo context, poor mobile UX, race conditions169- **Framework Hooks** → Load `references/framework-hooks.md`170 - When: Building custom hooks (React) or composables (Vue) around Search JS Core171- **Testing and Monitoring** → Load `references/testing-monitoring.md`172 - When: Writing tests or setting up production monitoring/analytics173174## Checklist: Production-Ready Search175176Before launching, verify:177178**Configuration:**179180- [ ] Token properly scoped (search:read only)181- [ ] URL restrictions configured182- [ ] Geographic filtering set (country, proximity, or bbox)183- [ ] Types parameter set based on use case184- [ ] Language parameter set if needed185186**Implementation:**187188- [ ] Debouncing implemented (300ms recommended)189- [ ] Session tokens used correctly190- [ ] Error handling for all failure cases191- [ ] Loading states shown192- [ ] Empty results handled gracefully193- [ ] Race conditions prevented194195**UX:**196197- [ ] Touch targets at least 44pt/48dp198- [ ] Results show enough context (name + address)199- [ ] Keyboard navigation works200- [ ] Accessibility attributes set201- [ ] Mobile keyboard handled properly202203**Performance:**204205- [ ] Caching implemented (if high volume)206- [ ] Request timeout set207- [ ] Minimal data fetched208- [ ] Bundle size optimized209210**Testing:**211212- [ ] Unit tests for core logic213- [ ] Integration tests with real API214- [ ] Tested on slow networks215- [ ] Tested with various query types216- [ ] Mobile device testing217218**Monitoring:**219220- [ ] Analytics tracking set up221- [ ] Error logging configured222- [ ] Usage monitoring in place223- [ ] Budget alerts configured224225## Integration with Other Skills226227**Works with:**228229- **mapbox-search-patterns**: Parameter selection and optimization230- **mapbox-web-integration-patterns**: Framework-specific patterns231- **mapbox-token-security**: Token management and security232- **mapbox-web-performance-patterns**: Optimizing search performance233234## Resources235236- [Search Box API Documentation](https://docs.mapbox.com/api/search/search-box/)237- [Geocoding API Documentation](https://docs.mapbox.com/api/search/geocoding/)238- [Mapbox Search JS](https://docs.mapbox.com/mapbox-search-js/guides/)239 - [Search JS React](https://docs.mapbox.com/mapbox-search-js/api/react/)240 - [Search JS Web](https://docs.mapbox.com/mapbox-search-js/api/web/)241 - [Search JS Core](https://docs.mapbox.com/mapbox-search-js/api/core/)242- [Search SDK for iOS](https://docs.mapbox.com/ios/search/guides/)243- [Search SDK for Android](https://docs.mapbox.com/android/search/guides/)244- [Location Helper Tool](https://labs.mapbox.com/location-helper/) - Calculate bounding boxes245246## Quick Decision Guide247248**User says: "I need location search"**2492501. **Ask discovery questions** (Questions 1-6 above)2512. **Recommend product:**252 - **Search Box API** (default for all interactive/user-facing search, including address geocoding)253 - Geocoding API only for batch/server-side/permanent geocoding254 - Platform SDK preferred (Search JS for web, native SDKs for mobile)2553. **Implement with:**256 - ✅ Debouncing257 - ✅ Session tokens258 - ✅ Geographic filtering259 - ✅ Error handling260 - ✅ Good UX2614. **Test thoroughly**2625. **Monitor in production**263264**Remember:** The best search implementation asks the right questions first, then builds exactly what the user needs - no more, no less.