Skip to main content
Add local farm sourcing to your existing marketplace or e-commerce platform. Bhumi provides the farm discovery and product data — you handle the transaction layer.

Integration patterns

Supplier enrichment

Augment your existing supplier database with Bhumi’s verified farm data — certifications, practices, quality scores, and product listings.

Local sourcing widget

Embed a “Source locally” feature that shows customers which nearby farms carry the product they’re viewing.

Farm profile pages

Use GET /v1/farms/:id to generate rich farm profile pages with photos, story, practices, and product listings.

Example: Enrich a product page

// Customer is viewing "eggs" — show local farm options
const res = await fetch(
  `https://api.bhumifarms.co/v1/food?product=eggs&lat=${userLat}&lng=${userLng}&radius=25`,
  { headers: { "X-API-Key": process.env.BHUMI_API_KEY } }
);

const { data } = await res.json();
// Display: "Available from 12 local farms near you"

Relevant endpoints

EndpointUse
GET /v1/foodFind farms carrying a specific product
GET /v1/farms/:idRich farm profile for detail pages
GET /v1/farms/:id/productsStructured product listings with pricing
GET /v1/availabilityReal-time stock check