# Leetcode — 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 filter LeetCode coding problems by difficulty, category, and tags, browse upcoming programming contests, and view public user profiles including their problem statistics and submission history. Perfect for finding practice problems, tracking competition schedules, and researching other coders' progress.

**Category:** Developer Tools | **Website:** [leetcode.com/](https://leetcode.com/) | **Docs:** [parse.bot/marketplace/83024dab-27c5-4e96-b579-502e699163f3/leetcode-com-api](https://parse.bot/marketplace/83024dab-27c5-4e96-b579-502e699163f3/leetcode-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-leetcode-com-api-83024dab/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_user_profile

Get a LeetCode user's public profile including personal info, ranking, and submission statistics broken down by difficulty. Returns stale_input with kind input_not_found if the username does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | LeetCode username to look up (e.g. 'neal_wu'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-leetcode-com-api-83024dab/get_user_profile \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### list_contests

List all LeetCode programming contests (weekly and biweekly). Returns the full list ordered by most recent first. No pagination. Each contest includes title, slug, start time (unix timestamp), duration in seconds, and premium status.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-leetcode-com-api-83024dab/list_contests \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_problems

Search and filter LeetCode problems. Supports keyword search, difficulty filtering, topic tag filtering, category filtering, and offset-based pagination. Returns problems sorted by question number. Each problem includes acceptance rate, difficulty, question ID, paid-only status, title, slug, and topic tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug filter. Accepts: algorithms, database, shell, concurrency. Empty string returns all categories. |
| `difficulty` | string | No | Difficulty filter. Accepts exactly one of: EASY, MEDIUM, HARD. Case-insensitive input is uppercased internally. |
| `keyword` | string | No | Search keyword to filter problems by title (e.g. 'two sum', 'binary tree'). |
| `limit` | integer | No | Maximum number of problems to return per page. |
| `skip` | integer | No | Number of problems to skip for pagination (offset). |
| `tags` | string | No | Comma-separated topic tag slugs to filter by (e.g. 'array,hash-table,dynamic-programming'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-leetcode-com-api-83024dab/search_problems \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","difficulty":"<string>","keyword":"<string>","limit":"<integer>","skip":"<integer>","tags":"<string>"}'
```
