GET
/api/v1/searchAuthenticated dealer search
Search by ZIP, city/state, or coordinates with API key authentication and usage tracking.
API reference
Use FFL Bridge as a flexible API for custom storefronts, internal fulfillment tools, and checkout flows. The WooCommerce plugin is available, but the API is the core platform.
1.0.0
Version
Bearer or X-API-Key
Auth
ZIP, city/state, lat/lng
Search inputs
/openapi.json
Spec
/api/v1/searchSearch by ZIP, city/state, or coordinates with API key authentication and usage tracking.
/api/v1/public/searchRate-limited search for embedded customer-facing experiences. Dealer email is not returned.
/api/v1/ordersAttach the customer and selected dealer to an order workflow for fulfillment follow-up.
/api/v1/usageCheck current API calls, daily usage, top endpoints, limits, and overage estimates.
curl "https://fflbridge.com/api/v1/search?zip=32174&radius=25&limit=10" \ -H "Authorization: Bearer YOUR_API_KEY"
const res = await fetch( "https://fflbridge.com/api/v1/public/search?zip=32174&radius=25" ); const data = await res.json();