# Eauctionsindia — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Real Estate | **Website:** [eauctionsindia.com/](https://eauctionsindia.com/) | **Docs:** [parse.bot/marketplace/9151c3e1-a6dd-4f92-b541-50479b940713/eauctionsindia-com-api](https://parse.bot/marketplace/9151c3e1-a6dd-4f92-b541-50479b940713/eauctionsindia-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-eauctionsindia-com-api-9151c3e1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### details

Get detailed information for a specific auction including property description, bank info, location, pricing, dates, and contact details. Requires a numeric auction_id which can be obtained from search or live endpoints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `auction_id` | string | Yes | Numeric auction ID (e.g. '780269'), obtainable from search or live endpoint results |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eauctionsindia-com-api-9151c3e1/details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"auction_id":"<string>"}'
```

### live

List currently live auctions. Returns all auction properties that are currently active or upcoming with imminent dates. Single-page response with no pagination parameters.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eauctionsindia-com-api-9151c3e1/live \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### metadata

Fetch states and cities available for use as search filters. Returns lists of state and city options with their slug IDs. Cities may be empty if the page only pre-loads states (cities are loaded dynamically per state on the site).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eauctionsindia-com-api-9151c3e1/metadata \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City slug to filter by, as returned by the metadata endpoint |
| `keyword` | string | No | Auction ID to search for (numeric string, e.g. '780269') |
| `page` | integer | No | Page number for pagination (1-based) |
| `state` | string | No | State slug to filter by, as returned by the metadata endpoint (e.g. 'gujarat', 'maharashtra') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-eauctionsindia-com-api-9151c3e1/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","keyword":"<string>","page":"<integer>","state":"<string>"}'
```
