Discover/Today Egg Rate API
live

Today Egg Rate 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.

Endpoint health
verified 3d ago
get_today_rates
get_market_rates
list_markets
search_markets
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Today Egg Rate 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.

Try it

No input parameters required.

api.parse.bot/scraper/4dfa0795-c8d9-4af6-92ce-f61544daf570/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4dfa0795-c8d9-4af6-92ce-f61544daf570/get_today_rates' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace todayeggrate-in-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Today Egg Rate India API — track egg prices across Indian markets."""
from parse_apis.today_egg_rate_india_api import TodayEggRate, Category, MarketNotFound

client = TodayEggRate()

# Get today's national egg rates across all 34 major markets.
daily = client.dailyrates.get()
print(f"Date: {daily.date}, Markets tracked: {daily.market_count}")
for rate in daily.average_rates:
    print(f"  {rate.market_type}: ₹{rate.piece}/piece, ₹{rate.tray}/tray")

# List markets in a specific category with pagination capped.
for summary in client.marketsummaries.list(category=Category.STATE, limit=3):
    print(f"State: {summary.name} (slug={summary.slug})")

# Search for a market by name and drill into its detail.
result = client.marketsummaries.search(query="mumbai", limit=1).first()
if result:
    market = result.details()
    print(f"{market.title} — category: {market.category}")
    for record in market.price_history[:3]:
        print(f"  {record.date}: ₹{record.piece}/piece (today={record.is_today})")

# Fetch a specific market directly by slug.
try:
    barwala = client.markets.get(slug="barwala")
    print(f"{barwala.title}, last updated: {barwala.last_updated}")
    for breakdown in barwala.market_rates:
        print(f"  {breakdown.market_type}: ₹{breakdown.piece}/piece")
except MarketNotFound as exc:
    print(f"Market not found: {exc.slug}")

print("Exercised: dailyrates.get / marketsummaries.list / marketsummaries.search / details / markets.get")
All endpoints · 4 totalmissing one? ·

Get today's egg rates for all 34 major markets across India, plus national average rates by market type (NECC, Wholesale, Retail, Super Market). Returns current date, per-market prices (piece, tray, 100 pcs, peti), and averaged rates across all markets broken down by channel. No input parameters required.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "date": "string - Current date (e.g., '11th June 2026')",
    "markets": "array of MarketPrice objects with market name and prices",
    "market_count": "integer - Number of markets (typically 34)",
    "average_rates": "array of RateBreakdown objects with market_type, piece, tray"
  },
  "sample": {
    "data": {
      "date": "11th June 2026",
      "markets": [
        {
          "peti": 1229,
          "tray": 175.5,
          "piece": 5.85,
          "market": "Ahmedabad",
          "hundred_pcs": 585
        },
        {
          "peti": 1147,
          "tray": 163.8,
          "piece": 5.46,
          "market": "Barwala",
          "hundred_pcs": 546
        }
      ],
      "market_count": 34,
      "average_rates": [
        {
          "tray": 178.53,
          "piece": 5.95,
          "market_type": "NECC Rate"
        },
        {
          "tray": 178.53,
          "piece": 5.95,
          "market_type": "WholeSale Rate"
        },
        {
          "tray": 189.24,
          "piece": 6.31,
          "market_type": "Retail Rate"
        },
        {
          "tray": 192.81,
          "piece": 6.43,
          "market_type": "Super Market Rate"
        }
      ]
    },
    "status": "success"
  }
}

About the Today Egg Rate API

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.

Reliability & maintenanceVerified

The Today Egg Rate API is a managed, monitored endpoint for todayeggrate.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when todayeggrate.in changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official todayeggrate.in API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does todayeggrate.in offer an official developer API?+
No. todayeggrate.in does not publish an official developer API or documented data feed. This Parse API is the structured access layer for the data it publishes.
What does get_market_rates return beyond the current day's price?+
It returns a price_history array covering up to 10 days of daily records for the requested city, market, or state. Each record includes piece, tray, hundred_pcs, and peti prices, plus an is_today boolean to identify the current entry. It also returns a market_rates array that breaks down today's price by channel: NECC, Wholesale, Retail, and Super Market.
How do I find the correct slug for a city or market?+
Use search_markets with a query string such as 'delhi' or 'tamil'. It first attempts an exact slug match, then falls back to substring matching across all categories. The response includes the slug field you can pass directly to get_market_rates. You can also browse the full index with list_markets using the category and page parameters.
Does the API expose egg prices for poultry farm-gate rates or futures/commodity exchange data?+
Not currently. The API covers NECC-published daily rates and derived Wholesale, Retail, and Super Market channel prices for cities, named markets, and states. Farm-gate or commodity exchange data is not in scope. You can fork this API on Parse and revise it to add endpoints targeting those additional data sources.
How far back does price history go per market?+
The price_history field returned by get_market_rates covers up to 10 days of daily records per location. Longer historical archives beyond that window are not currently exposed. You can fork this API on Parse and revise it to extend the historical depth if the source publishes older records.
Page content last updated . Spec covers 4 endpoints from todayeggrate.in.
Related APIs in Food DiningSee all →
goodreturns.in API
Access real-time and historical gold prices across India. Retrieve daily gold rates for 18k, 22k, and 24k purity levels in INR, compare prices across major Indian cities, and explore recent price trends and monthly summaries.
produceiq.com API
Track real-time produce commodity prices across 39 items in fruits, vegetables, melons, and more, with weekly updates and historical pricing data stretching back to 2005. Monitor price trends and build live price feeds to stay informed on market movements across the produce industry.
a101.com.tr API
Browse and search products from A101's grocery delivery service (Kapıda) and marketplace (Ekstra), including category exploration and detailed product information. Find what you need across both platforms with search functionality and organized category browsing.
hyperpure.com API
Access Hyperpure by Zomato's wholesale product catalog to browse vegetables, ration items, and other categories across multiple cities, search for specific products, and retrieve detailed product information. Streamline your bulk purchasing by discovering available products and their details in your area.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
eauctionsindia.com API
Search and browse property auction listings on eAuctions India, including live ongoing auctions and detailed specifications for each property. Get comprehensive auction information like bidding details, property descriptions, and metadata to help you find and monitor properties of interest.
upag.gov.in API
Access comprehensive agricultural data including crop production estimates, minimum support prices (MSP), crop yield trends, and planting calendars for both domestic and international markets. Search through agricultural reports and statistics to track commodity prices, production forecasts, and seasonal crop information.
tradeindia.com API
Search and discover products, suppliers, and their contact information on TradeIndia's B2B marketplace. Browse product categories, find supplier profiles, and explore upcoming tradeshows and industry events — including locations, dates, venues, and organizer details.