BHUMI

/Developers/Market Intelligence
Try it

Market Intelligence

GET /v1/market/landscape

Raw market data — pricing comparison, competitor analysis, farm differentiation, delivery landscape, and full area market overview. Everything an AI agent needs to make informed sourcing decisions.

Parameters

NameTypeDescription
latrequirednumberLatitude of market area center
lngrequirednumberLongitude of market area center
radius_milesnumberSearch radius in miles (1–100, default 25)
productstringFocus product for pricing and competition data

Example request

curl "https://api.bhumifarms.co/v1/market/landscape\
  ?lat=45.52&lng=-122.68&radius_miles=30\
  &product=raw+milk" \
  -H "X-API-Key: bh_live_your_key"

Example response

{
  "area": {
    "center": { "lat": 45.52, "lng": -122.68 },
    "radius_miles": 30,
    "total_farms": 47
  },
  "quality_distribution": {
    "Premium": 8,
    "Standard": 24,
    "Basic": 15
  },
  "top_products": [
    { "product": "eggs", "farm_count": 31, "avg_price": 5.75 },
    { "product": "raw milk", "farm_count": 18, "avg_price": 11.50 },
    { "product": "honey", "farm_count": 14, "avg_price": 12.00 },
    { "product": "beef", "farm_count": 12, "avg_price": null }
  ],
  "certifications": {
    "Certified Organic": 11,
    "Non-GMO": 7,
    "Animal Welfare Approved": 4
  },
  "practices": {
    "100% grass-fed": 22,
    "pasture-raised": 19,
    "no antibiotics": 14,
    "rotational grazing": 8
  },
  "pricing": {
    "product": "raw milk",
    "unit": "gallon",
    "min": 8.00,
    "max": 16.00,
    "avg": 11.50,
    "median": 12.00
  },
  "delivery_coverage": {
    "farm_pickup": 38,
    "farmers_market": 21,
    "home_delivery": 6,
    "drop_site": 4
  }
}