ManeSearch

ManeSearch Public API

Free, open access to verified US equine feed and supplement data. No API key required.

Feeds

Full nutritional profiles for US equine feeds.

GET https://manesearch.com/api/feeds
ParameterTypeDescriptionExample
qstringSearch by brand or product nameq=purina+strategy
typestringFilter by feed type (Hay, Grain, Pellet, Complete Feed, Supplement, Ration Balancer, Treat)type=Pellet
max_nscnumberOnly return feeds at or below this NSC %max_nsc=12
iduuidFetch a single feed by IDid=abc-123
limitnumberResults per page — max 200, default 50limit=25
offsetnumberPagination offsetoffset=50

Example requests

All feeds
https://manesearch.com/api/feeds
Search for "strategy"
https://manesearch.com/api/feeds?q=strategy
Pellets with NSC under 12%
https://manesearch.com/api/feeds?type=Pellet&max_nsc=12
Paginate (page 2 of 25)
https://manesearch.com/api/feeds?limit=25&offset=25

Response shape

{
  "data": [
    {
      "id": "uuid",
      "brand": "Purina",
      "product_name": "Strategy GX",
      "feed_type": "Pellet",
      "crude_protein": 14,
      "crude_fat": 6,
      "crude_fiber": 12,
      "nsc": 11.2,
      "esc": 6.4,
      "starch": 4.8,
      "calcium": 0.8,
      "phosphorus": 0.5,
      "magnesium": 0.3,
      "selenium_ppm": 0.3,
      "vitamin_e_iu_per_lb": 80,
      ... all nutritional fields
    }
  ],
  "meta": {
    "count": 1,
    "limit": 50,
    "offset": 0,
    "docs": "https://manesearch.com/api-docs"
  }
}

Supplements

Joint, hoof, digestive, coat, calming, and vitamin & mineral supplements.

GET https://manesearch.com/api/supplements
ParameterTypeDescriptionExample
qstringSearch by brand or product nameq=platinum
categorystringFilter by category: joint, hoof, digestive, coat_skin, calming, vitamin_mineralcategory=joint
iduuidFetch a single supplement by IDid=abc-123
limitnumberResults per page — max 200, default 50limit=25
offsetnumberPagination offsetoffset=50

Example requests

All supplements
https://manesearch.com/api/supplements
Search for "platinum"
https://manesearch.com/api/supplements?q=platinum
Joint supplements only
https://manesearch.com/api/supplements?category=joint
Hoof supplements
https://manesearch.com/api/supplements?category=hoof

Usage Notes

  • ✓ No API key required — free and open to all
  • ✓ CORS enabled — call directly from browser or server
  • ✓ Responses cached for 5 minutes (CDN) for fast repeated lookups
  • ✓ All data is US-focused and admin-verified before going live
  • ✓ Rate limiting may be applied if usage becomes abusive

Questions or want to report an issue? hello@manesearch.com