Skip to main content
Bhumi’s dataset of 13,700+ farms across all 50 states provides structured data for food system research. Access farm density, product distribution, certification patterns, and geographic coverage programmatically.

Research applications

  • Food desert analysis — map farm density vs population to identify underserved areas
  • Certification trends — track organic, non-GMO, and welfare certification adoption
  • Regional food systems — analyze product diversity and farm types by state or region
  • Direct-to-consumer access — study delivery options and market formats

Example: State-level farm analysis

import requests

# Get all farms in Vermont
response = requests.get(
    "https://api.bhumifarms.co/v1/farms",
    params={"state": "VT", "per_page": 100},
    headers={"X-API-Key": "bh_live_your_key_here"},
)

farms = response.json()["data"]
# Analyze products, certifications, place_types across the state

Platform-level statistics

curl "https://api.bhumifarms.co/v1/stats" \
  -H "X-API-Key: bh_live_your_key_here"
Returns total farms, products, state coverage, place type distribution, and top products — useful for high-level overviews in research papers.

Relevant endpoints

EndpointUse
GET /v1/farmsFilter and paginate the full dataset
GET /v1/statsPlatform-level aggregates
GET /v1/searchGeographic analysis with radius queries
nearby_categories (MCP)Product and practice breakdown for an area