eauctionsindia.com APIeauctionsindia.com ↗
Access property auction listings, live auctions, and detailed specs from eauctionsindia.com. Filter by state, city, or keyword across 4 endpoints.
curl -X GET 'https://api.parse.bot/scraper/1de86bbb-e71d-4190-88a3-af1a15fb1328/search?state=gujarat' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for auctions with optional filters for keyword, state, and city. Returns paginated listing results from eauctionsindia.com. When no filters are provided, returns the latest upcoming auctions.
| Param | Type | Description |
|---|---|---|
| city | string | City slug to filter by, as returned by the metadata endpoint |
| page | integer | Page number for pagination |
| state | string | State slug to filter by, as returned by the metadata endpoint (e.g. 'gujarat', 'maharashtra') |
| keyword | string | Search keyword to filter auctions (e.g. 'plot', 'land') |
{
"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": "761815",
"url": "https://www.eauctionsindia.com/properties/761815",
"date": "16-07-2026 12:00 PM",
"title": "eAuction Plot in Kamrej, Surat",
"category": "",
"location": "",
"reserve_price": "₹20,93,000.00"
}
],
"total_on_page": 12
},
"status": "success"
}
}About the eauctionsindia.com 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.
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.
- Monitor newly listed bank auction properties across a specific state using the
searchendpoint with astateslug - Track live auctions in real time by polling the
liveendpoint for active and imminent listings - Retrieve earnest money deposit and reserve price for a known auction via the
detailsendpoint to assess bid eligibility - Build a property auction alert system by storing
auction_idvalues and checking status changes using thedetailsendpoint - Aggregate auction listings by category (plot, land, flat) using the
keywordfilter insearch - Populate a city/state filter UI by fetching available slugs from the
metadataendpoint - Identify the originating bank branch and service provider for an auctioned asset via
bank_infoin thedetailsresponse
| 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.
Does eauctionsindia.com have an official developer API?+
What does the `details` endpoint return beyond what `search` provides?+
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?+
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?+
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.