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

> Access data from figma.com.

**Category:** Jobs | **Website:** [www.figma.com/careers/](https://www.figma.com/careers/) | **Docs:** [parse.bot/marketplace/c67dee63-d1ea-41fa-9e2c-af6043750c41/figma-com-api](https://parse.bot/marketplace/c67dee63-d1ea-41fa-9e2c-af6043750c41/figma-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-figma-com-api-c67dee63/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job

Get full details for a specific Figma job posting by its numeric ID. Returns the job title, department, location, URL, and full HTML content of the job description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | Numeric Greenhouse job ID (e.g. '5364702004'). Available from list_jobs or search_jobs results. |

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

### list_jobs

List all open job postings at Figma. Returns each job's title, department, location, and URL. Optionally filter by department name or location substring match (case-insensitive). Results are returned as a single page containing all matching jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `department` | string | No | Filter jobs by department name (case-insensitive substring match, e.g. 'Engineering', 'Sales', 'Design'). |
| `location` | string | No | Filter jobs by location (case-insensitive substring match, e.g. 'San Francisco', 'London', 'Remote'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-figma-com-api-c67dee63/list_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"department":"<string>","location":"<string>"}'
```

### search_jobs

Search Figma job postings by keyword. Matches against job title and description content (case-insensitive). Optionally filter results further by department or location.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `department` | string | No | Filter results by department name (case-insensitive substring match). |
| `location` | string | No | Filter results by location (case-insensitive substring match). |
| `query` | string | Yes | Search keyword to match against job titles and descriptions. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-figma-com-api-c67dee63/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"department":"<string>","location":"<string>","query":"<string>"}'
```
