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

> Browse and retrieve real resumes from top tech companies that successfully passed resume screens, filtering by role, level, company, school, and verification status. Access resume data and images from over 1,884+ verified resumes to study what works for landing jobs at elite tech firms.

**Category:** Jobs | **Website:** [resumes.fyi/explore](https://resumes.fyi/explore) | **Docs:** [parse.bot/marketplace/cdb0a7d7-d02e-4df6-af41-237728ed5d6e/resumes-fyi-api](https://parse.bot/marketplace/cdb0a7d7-d02e-4df6-af41-237728ed5d6e/resumes-fyi-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-resumes-fyi-api-cdb0a7d7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_resume

Get detailed resume data for a specific user by username, including full resume image URL, all company tags, complete skills list, experience history, and education details. Returns richer company and skill data than the list endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | Username of the resume owner. Obtainable from list_resumes results. |

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

### list_resumes

List resumes with metadata and image URLs. Supports pagination and filtering by role, level, company, school, and verified status. Returns resume summaries including user info, companies, skills, experiences, and education. Results are sorted by most-screened. Each page returns up to 50 results; use the page parameter to advance through the full set.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company` | string | No | Filter by company slug (e.g. google, meta, amazon). |
| `level` | string | No | Filter by level. |
| `limit` | integer | No | Results per page (max 50). |
| `page` | integer | No | Page number (1-indexed). |
| `role` | string | No | Filter by role slug. |
| `school` | string | No | Filter by school/university name. |
| `verified_only` | boolean | No | Only show verified resumes. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-resumes-fyi-api-cdb0a7d7/list_resumes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company":"<string>","level":"<string>","limit":"<integer>","page":"<integer>","role":"<string>","school":"<string>","verified_only":"<boolean>"}'
```
