todayeggrate.in APItodayeggrate.in ↗
Access daily NECC egg prices for 1600+ Indian cities, 34 markets, and 21 states. Includes price history, market type breakdowns, and search by location.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/4dfa0795-c8d9-4af6-92ce-f61544daf570/get_today_rates' \ -H 'X-API-Key: $PARSE_API_KEY'
Get today's egg rates for all 34 major markets across India, plus national average rates by market type (NECC, Wholesale, Retail, Super Market). No input parameters required.
No input parameters required.
{
"type": "object",
"fields": {
"date": "string - Current date (e.g., '15th May 2026')",
"markets": "array of market objects with market name and prices (piece, tray, hundred_pcs, peti)",
"market_count": "integer - Number of markets",
"average_rates": "array of national average rate objects with market_type, piece, tray"
},
"sample": {
"data": {
"date": "15th May 2026",
"markets": [
{
"peti": 1145,
"tray": 163.5,
"piece": 5.45,
"market": "Ahmedabad",
"hundred_pcs": 545
},
{
"peti": 1155,
"tray": 165,
"piece": 5.5,
"market": "Delhi",
"hundred_pcs": 550
}
],
"market_count": 34,
"average_rates": [
{
"tray": 165.26,
"piece": 5.51,
"market_type": "NECC Rate"
},
{
"tray": 175.17,
"piece": 5.84,
"market_type": "Retail Rate"
}
]
},
"status": "success"
}
}About the todayeggrate.in API
The todayeggrate.in API exposes current and historical NECC egg prices across 1,600+ Indian cities, 34 major markets, and 21 states through 4 endpoints. get_today_rates returns today's per-piece, tray, hundred-piece, and peti prices for all major markets alongside national averages broken down by market type — NECC, Wholesale, Retail, and Super Market. get_market_rates adds a 10-day price history for any specific city, market, or state.
What the API covers
The API tracks egg pricing data published by todayeggrate.in, which aggregates NECC (National Egg Coordination Committee) rates and derived market-channel prices. Each response includes prices in four units: piece, tray (30 eggs), hundred pieces, and peti (typically 210 eggs). Coverage spans cities, named wholesale markets (such as Barwala and Namakkal), and state-level aggregates — categorized in responses as city, market, or state.
Endpoint details
get_today_rates requires no parameters and returns a markets array of all 34 major market objects plus an average_rates array with national averages per market type. get_market_rates accepts a slug parameter (e.g., barwala, delhi, andhra-pradesh) and returns a market_rates breakdown by channel alongside a price_history array of up to 10 daily records, each flagged with is_today to identify the current entry.
list_markets supports pagination via page and per_page (max 100) and an optional category filter (market, state, or city). Results include name, slug, title, link, and last_updated per item, along with total and total_pages for cursor management. search_markets takes a query string and performs slug-exact matching before falling back to substring search; an optional category filter narrows results to one channel type.
Data shape and freshness
Every market object carries a last_updated ISO datetime field so you can detect stale entries without re-fetching. The price_history records from get_market_rates include date, piece, tray, hundred_pcs, and peti fields, giving a short rolling window suitable for trend detection or daily comparison workflows.
- Monitor daily NECC egg rates across all 34 major Indian markets using get_today_rates.
- Build city-level price dashboards by querying get_market_rates with slugs like 'mumbai' or 'hyderabad'.
- Compare Wholesale vs. Retail vs. Super Market channel prices using the market_rates breakdown per location.
- Plot 10-day egg price trend lines from the price_history array returned by get_market_rates.
- Enumerate all tracked states and cities using list_markets with the category filter for structured data ingestion.
- Autocomplete location search in a price-tracking app using the search_markets query endpoint.
- Track state-level average egg prices for procurement or cost-modeling in food supply chain applications.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.