# Angel — 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 for startup job opportunities and explore detailed information about companies, positions, and founders all in one place. Discover your next role by browsing Wellfound's curated startup jobs with comprehensive company profiles and person details.

**Category:** Jobs | **Website:** [angel.co/](https://angel.co/) | **Docs:** [parse.bot/marketplace/38873393-15d5-4b37-9fd0-b747d3aa6079/angel-co-api](https://parse.bot/marketplace/38873393-15d5-4b37-9fd0-b747d3aa6079/angel-co-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-angel-co-api-38873393/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Get full details of a specific job listing including description, salary, location, benefits, and company info. Job IDs can be obtained from search_jobs results as the job_id_slug field. Job listings expire over time; expired IDs return a not-found error.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id_slug` | string | Yes | Job ID and slug from search_jobs results job_id_slug field (e.g. '4322508-software-engineer') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-angel-co-api-38873393/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_id_slug":"<string>"}'
```

### get_person_details

Get profile details for a person (founder or investor), including their investments/portfolio.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Person's slug (e.g., 'naval') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-angel-co-api-38873393/get_person_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_startup_details

Get detailed information about a startup on Wellfound, including description, team members, funding history, social links, and company metadata. Startup slugs can be found in search_jobs results or by URL path on wellfound.com/company/{slug}.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Startup slug identifier (e.g. 'stripe', 'madhive', 'calm') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-angel-co-api-38873393/get_startup_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_jobs

Search for jobs by role or location on Wellfound. Returns paginated results with job details and associated startup information. At least one of role or location must be provided. Pagination via page number; each page returns up to ~50 jobs. Results include salary, equity, job type, and startup metadata for each listing.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location slug to search for (e.g. 'san-francisco', 'new-york', 'remote', 'london') |
| `page` | integer | No | Page number for pagination (1-based) |
| `role` | string | No | Role slug to search for (e.g. 'software-engineer', 'product-manager', 'designer', 'data-scientist') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-angel-co-api-38873393/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","page":"<integer>","role":"<string>"}'
```
