# Prepladder — 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 through PrepLadder's comprehensive NEET PG study materials and access structured MCQ questions complete with options and answers from previous year exam papers. Find relevant questions and articles to prepare effectively for your medical entrance exam.

**Category:** Education | **Website:** [www.prepladder.com/neet-pg-study-material/previous-years-question-papers/neet-pg-previous-year-question-papers-of-last-5-years?](https://www.prepladder.com/neet-pg-study-material/previous-years-question-papers/neet-pg-previous-year-question-papers-of-last-5-years?) | **Docs:** [parse.bot/marketplace/cfccd15e-9371-4ce2-801d-9ce895f835b7/prepladder-com-api](https://parse.bot/marketplace/cfccd15e-9371-4ce2-801d-9ce895f835b7/prepladder-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-prepladder-com-api-cfccd15e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article_questions

Fetch a specific PrepLadder article by its URL path and extract structured MCQ questions. Returns each question with its text, four options (A-D), and the correct answer when available. The url_path can be obtained from the search_questions endpoint results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url_path` | string | Yes | Article URL path from search_questions results (e.g. 'neet-pg-study-material/previous-years-question-papers/neet-pg-previous-year-question-papers-of-last-5-years'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-prepladder-com-api-cfccd15e/get_article_questions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url_path":"<string>"}'
```

### search_questions

Search PrepLadder NEET PG study material articles by keyword. Returns paginated article results matching the query, including title, category, date, URL path, and content preview. Each article may contain multiple MCQ questions. Use get_article_questions with the returned url_path to extract structured questions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, starting from 1. |
| `query` | string | Yes | Search keyword or phrase to find relevant study material articles (e.g. 'anatomy', 'pharmacology', 'deltoid ligament'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-prepladder-com-api-cfccd15e/search_questions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
