# Mvit — 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.

> Retrieve comprehensive information about MVIT Puducherry's faculty members, view detailed placement statistics, and access organized tabular data about the institute. Get quick insights into faculty profiles and recruitment outcomes to learn more about the college's academic and career placement landscape.

**Category:** Education | **Website:** [mvit.edu.in/](https://mvit.edu.in/) | **Docs:** [parse.bot/marketplace/1e14be0f-5c9e-4671-b2b6-06b582daec46/mvit-edu-in-api](https://parse.bot/marketplace/1e14be0f-5c9e-4671-b2b6-06b582daec46/mvit-edu-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-mvit-edu-in-api-1e14be0f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_faculty

Retrieve the complete faculty list for a specific department at MVIT. Returns each faculty member's name, qualification, designation, specialization, date of joining, and profile URL when available. Results are returned in a single page ordered by seniority.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `department` | string | Yes | Department code to fetch faculty for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mvit-edu-in-api-1e14be0f/get_faculty \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"department":"<string>"}'
```

### get_placement_stats

Retrieve year-wise placement statistics for MVIT including number of recruiting companies, students attended, and students placed. Returns historical data across multiple academic years.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mvit-edu-in-api-1e14be0f/get_placement_stats \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_table_data

Retrieve raw data from any Ninja Tables table on the MVIT website by its numeric table ID. Useful for accessing any structured data table such as placement details, research publications, or other institutional data. HTML markup in cell values is preserved as-is.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sorting` | string | No | Sort order for the table rows. |
| `table_id` | string | Yes | Numeric ID of the Ninja Tables table to fetch (e.g. '6469' for placement batch details, '2774' for EEE faculty). Found in the page source or network traffic. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mvit-edu-in-api-1e14be0f/get_table_data \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"sorting":"<string>","table_id":"<string>"}'
```
