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
| Parameter | Type | Description | Example |
|---|---|---|---|
| q | string | Search by brand or product name | q=purina+strategy |
| type | string | Filter by feed type (Hay, Grain, Pellet, Complete Feed, Supplement, Ration Balancer, Treat) | type=Pellet |
| max_nsc | number | Only return feeds at or below this NSC % | max_nsc=12 |
| id | uuid | Fetch a single feed by ID | id=abc-123 |
| limit | number | Results per page — max 200, default 50 | limit=25 |
| offset | number | Pagination offset | offset=50 |
Example requests
All feeds
https://manesearch.com/api/feedsSearch for "strategy"
https://manesearch.com/api/feeds?q=strategyPellets with NSC under 12%
https://manesearch.com/api/feeds?type=Pellet&max_nsc=12Paginate (page 2 of 25)
https://manesearch.com/api/feeds?limit=25&offset=25Response 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
| Parameter | Type | Description | Example |
|---|---|---|---|
| q | string | Search by brand or product name | q=platinum |
| category | string | Filter by category: joint, hoof, digestive, coat_skin, calming, vitamin_mineral | category=joint |
| id | uuid | Fetch a single supplement by ID | id=abc-123 |
| limit | number | Results per page — max 200, default 50 | limit=25 |
| offset | number | Pagination offset | offset=50 |
Example requests
All supplements
https://manesearch.com/api/supplementsSearch for "platinum"
https://manesearch.com/api/supplements?q=platinumJoint supplements only
https://manesearch.com/api/supplements?category=jointHoof supplements
https://manesearch.com/api/supplements?category=hoofUsage 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