Discover/eAuctions India API
live

eAuctions India APIeauctionsindia.com

Access property auction listings, live auctions, and detailed specs from eauctionsindia.com. Filter by state, city, or keyword across 4 endpoints.

Endpoint health
verified 4d ago
details
live
search
metadata
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the eAuctions India API?

The eAuctions India API provides 4 endpoints to search, browse, and retrieve structured data from eauctionsindia.com's property auction database. The search endpoint accepts keyword, state, and city filters to return paginated auction listings, while details returns field-level data for a specific auction including reserve price, earnest money deposit, bank info, and start and end timestamps.

Try it
City slug to filter by, as returned by the metadata endpoint
Page number for pagination (1-based)
State slug to filter by, as returned by the metadata endpoint (e.g. 'gujarat', 'maharashtra')
Auction ID to search for (numeric string, e.g. '780269')
api.parse.bot/scraper/1de86bbb-e71d-4190-88a3-af1a15fb1328/<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/1de86bbb-e71d-4190-88a3-af1a15fb1328/search?page=1&state=maharashtra&keyword=780269' \
  -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 eauctionsindia-com-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: eAuctions India SDK — search auctions, fetch details, filter by state."""
from parse_apis.eauctions_india_api import EAuctionsIndia, State, AuctionNotFound

client = EAuctionsIndia()

# List live auctions — capped to 5 items
for auction in client.auctionsummaries.live(limit=5):
    print(auction.title, auction.reserve_price, auction.date)

# Search auctions filtered by state using the State enum
for auction in client.auctionsummaries.search(state=State.MAHARASHTRA, limit=3):
    print(auction.id, auction.title, auction.reserve_price)

# Drill into a single auction's full details via the summary
summary = client.auctionsummaries.live(limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.reserve_price, detail.emd)
    print(detail.location.state, detail.location.city, detail.location.area)
    print(detail.bank_info.bank_name, detail.property_details.property_type)

# Fetch available filter options (states and cities)
filters = client.filteroptionses.get()
for state in filters.states[:3]:
    print(state.id, state.name)

# Fetch auction details directly by ID with typed error handling
try:
    auction = client.auctions.get(auction_id="780269")
    print(auction.title, auction.status, auction.start_date)
except AuctionNotFound as exc:
    print(f"Auction not found: {exc.auction_id}")

print("exercised: auctionsummaries.live / auctionsummaries.search / summary.details / filteroptionses.get / auctions.get")
All endpoints · 4 totalmissing one? ·

Search for auctions with optional filters for auction ID, state, and city. Returns paginated listing results. When no filters are provided, returns the latest upcoming auctions. Pagination via page number in the URL path.

Input
ParamTypeDescription
citystringCity slug to filter by, as returned by the metadata endpoint
pageintegerPage number for pagination (1-based)
statestringState slug to filter by, as returned by the metadata endpoint (e.g. 'gujarat', 'maharashtra')
keywordstringAuction ID to search for (numeric string, e.g. '780269')
Response
{
  "type": "object",
  "fields": {
    "items": "array of auction listing objects with id, url, title, date, reserve_price, location, and category",
    "total_on_page": "integer count of items returned on this page"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "787499",
          "url": "https://www.eauctionsindia.com/properties/787499",
          "date": "",
          "title": "eAuction Car in Vellore, Vellore",
          "category": "",
          "location": "",
          "reserve_price": "₹2,70,000.00"
        }
      ],
      "total_on_page": 1
    },
    "status": "success"
  }
}

About the eAuctions India API

Endpoints and Data Coverage

The API covers four operations against eauctionsindia.com's auction inventory. The search endpoint accepts optional keyword, state, and city parameters — state and city values must be slugs as returned by the metadata endpoint (e.g. gujarat, maharashtra). Results come back as paginated arrays of auction listing objects, each carrying an id, url, title, date, reserve_price, location, and category. When called with no filters, it returns the latest upcoming auctions.

Live and Detailed Auction Data

The live endpoint requires no inputs and returns all currently active or imminently upcoming auctions in the same listing object shape as search. For deeper data, the details endpoint takes a numeric auction_id and returns a richer object: emd (earnest money deposit amount), images array, start_date, end_time, status (one of Upcoming, Active, Closed, or Unknown), a location object broken into state, city, and area, and a bank_info object with bank_name, branch_name, and service_provider.

Metadata for Filter Values

The metadata endpoint returns the full set of states and cities available as filter slugs, each with an id and name. This makes it straightforward to build dropdown menus or enumerated filter sets without hardcoding slug values. State slugs from this endpoint are the accepted inputs for the state parameter in search, and the same applies to city slugs.

Reliability & maintenanceVerified

The eAuctions India API is a managed, monitored endpoint for eauctionsindia.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when eauctionsindia.com 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 eauctionsindia.com 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
4d 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 newly listed bank auction properties across a specific state using the search endpoint with a state slug
  • Track live auctions in real time by polling the live endpoint for active and imminent listings
  • Retrieve earnest money deposit and reserve price for a known auction via the details endpoint to assess bid eligibility
  • Build a property auction alert system by storing auction_id values and checking status changes using the details endpoint
  • Aggregate auction listings by category (plot, land, flat) using the keyword filter in search
  • Populate a city/state filter UI by fetching available slugs from the metadata endpoint
  • Identify the originating bank branch and service provider for an auctioned asset via bank_info in the details response
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 eauctionsindia.com have an official developer API?+
No. eauctionsindia.com does not publish a public developer API or documentation for third-party data access.
What does the `details` endpoint return beyond what `search` provides?+
The details endpoint returns several fields absent from listing results: emd (earnest money deposit), an images array, start_date, end_time, a status field (Upcoming, Active, Closed, or Unknown), a structured location object with state, city, and area, and a bank_info object with bank name, branch name, and service provider.
Can I retrieve bid history or current highest bid for an auction?+
Not currently. The API returns reserve price and EMD from the details endpoint, but does not expose bid history, current bid amounts, or bidder counts. You can fork this API on Parse and revise it to add an endpoint targeting that data if it becomes available on the source page.
How does pagination work in the `search` endpoint?+
The search endpoint accepts an integer page parameter. Each response includes a total_on_page count reflecting items on that page. There is no total-results-count or total-pages field in the response, so iterating requires checking whether total_on_page drops to zero to detect the last page.
Are auctions outside India or non-property categories covered?+
No. Coverage is limited to property auctions listed on eauctionsindia.com, which focuses on Indian bank-held property auctions. Vehicle, machinery, or other asset types that may appear on the source site are not exposed as separate endpoints. You can fork this API on Parse and revise it to add filtering or endpoints for those asset categories.
Page content last updated . Spec covers 4 endpoints from eauctionsindia.com.
Related APIs in Real EstateSee all →
auction.com API
auction.com API
encheres-publiques.com API
Search and browse real estate, vehicle, art, and equipment auctions across France, viewing detailed lot information and upcoming auction events from various organizers. Filter auction listings by category and type to find specific items and compare auction details to make informed bidding decisions.
auctionzip.com API
Search and browse auction lots across the AuctionZip marketplace, view detailed lot information and complete auction catalogs, track historical prices realized, and discover auctioneers by name or location. Access auction schedules, item specifications, seller terms, and top-performing auctioneers.
housing.com API
Search and retrieve real estate listings on Housing.com. Browse properties for sale, rent, plots, and commercial spaces across major Indian cities with filtering by locality and property type.
realestate.com.au API
Search and retrieve property listing data from realestate.com.au, including listings for sale and rent, detailed property information, and nearby schools for any location across Australia.
auctioneers.org API
Search and retrieve professional auctioneer profiles from the National Auction Association (NAA) member directory. Filter by location, specialty category, and professional designation, and access full contact and bio details for individual members.
99acres.com API
99acres.com API
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.