# Sebi — 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 retrieve debt offer documents filed with India's securities regulator (SEBI) by issuer or entity name to access official financial disclosures and offering details. Quickly find compliance filings, prospectuses, and regulatory documents for debt securities across Indian markets.

**Category:** Government & Public Data | **Website:** [www.sebi.gov.in/sebiweb/home/HomeAction.do?doListing=yes&sid=3&ssid=17&smid=38](https://www.sebi.gov.in/sebiweb/home/HomeAction.do?doListing=yes&sid=3&ssid=17&smid=38) | **Docs:** [parse.bot/marketplace/b79238c9-e163-4a17-8727-e28f503cc386/sebi-gov-in-api](https://parse.bot/marketplace/b79238c9-e163-4a17-8727-e28f503cc386/sebi-gov-in-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-sebi-gov-in-api-b79238c9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_offer_documents

Search for debt offer documents filed by a given issuer or entity name on SEBI. Returns paginated results (25 per page) from the Debt Offer Document filings section. Each result includes the filing date, document title, and a link to the full document. Supports optional filtering by subcategory (draft filed with SE or final filed with ROC) and date range. When subcategory is omitted, results include both drafts and final filings. Use the page parameter to paginate through results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `entity` | string | Yes | Issuer or entity name to search for (e.g. 'Tata', 'HDFC', 'Reliance'). Searches by title, keywords, and entity name. |
| `from_date` | string | No | Start date filter in DD-MM-YYYY format (e.g. '01-01-2018'). When omitted, no start date filter is applied. |
| `page` | integer | No | Page number for pagination. Each page contains up to 25 records. |
| `subcategory` | string | No | Filter by filing subcategory. When omitted, returns documents from all subcategories. |
| `to_date` | string | No | End date filter in DD-MM-YYYY format (e.g. '31-12-2020'). When omitted, no end date filter is applied. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sebi-gov-in-api-b79238c9/search_offer_documents \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"entity":"<string>","from_date":"<string>","page":"<integer>","subcategory":"<string>","to_date":"<string>"}'
```
