# 💼 Wellfound Jobs Scraper (`skootle/wellfound-jobs-scraper`) Actor

Scrape Wellfound (formerly AngelList Talent) for startup job listings. Title, company, stage, funding, team size, role description, salary range (numeric USD), equity, location, remote enum, stack, posted date. Export, run via API, schedule, or integrate with other tools.

- **URL**: https://apify.com/skootle/wellfound-jobs-scraper.md
- **Developed by:** [Skootle](https://apify.com/skootle) (community)
- **Categories:** Jobs, AI, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

![Wellfound Jobs Scraper hero](https://raw.githubusercontent.com/kesjam/skootle-actors-assets/main/heroes/wellfound-jobs.png)

### TL;DR

Scrape Wellfound (formerly AngelList Talent) for startup job listings. Returns clean JSON with title, company, company stage, funding, team size, role description, salary range (numeric USD low/high), equity range, location, remote-policy enum, technologies, posted date, direct apply URL, and a 300-500 character markdown summary per record. The deepest source for early-stage startup hiring intelligence. Built on Wellfound's public listing pages.

---

<!-- skootle:review-cta -->
> Try it on a small dataset, then let us know what you think in a [review](https://apify.com/skootle/wellfound-jobs-scraper/reviews).

---

### What does Wellfound Jobs Scraper do?

Wellfound Jobs Scraper extracts every public job listing from Wellfound (the startup-focused job board formerly known as AngelList Talent). You give it search filters (role, location, remote-only, company stage, technology) or a Wellfound search URL; it returns one well-typed record per listing with: title, company name + size + funding stage, role description, salary range (numeric USD low/high alongside the raw Wellfound-format string), equity range, location, normalized remote-policy enum (`REMOTE_ONLY | REMOTE_FRIENDLY | HYBRID | ONSITE | UNKNOWN`), technologies tagged on the role, posted date in ISO 8601, and a direct apply URL.

Every record ships with `agentMarkdown` (300-500 chars) so an AI agent can summarize a job in a single LLM call without wrapping logic.

### Why scrape Wellfound?

Wellfound is the canonical job board for early-stage and growth-stage startups (Seed through Series C). If you're sourcing engineers in your stack, building a recruiting pipeline, tracking which startups just opened a senior IC role (often a fresh-raise signal), or selling B2B SaaS into the startup ecosystem, Wellfound has the freshest signal in the market.

The data is public — anyone can browse Wellfound listings without an account — but the site doesn't expose a public API. This actor handles the listing-parsing + filter-mapping + ISO normalization + numeric salary extraction so you get clean structured records instead of HTML strings.

### Who needs this?

- **Tech recruiters** sourcing engineers in your stack from startups in your target funding range and region
- **Compensation researchers** building startup salary benchmarks by role × city × stage
- **B2B SaaS sales teams** prospecting startups hiring 5+ engineers in your category (signal of buying intent)
- **VC and investor relations** tracking portfolio companies' hiring volume as a deployment-momentum signal
- **Founders and operators** benchmarking comp ranges before posting their own roles
- **AI agents** running daily searches and surfacing top candidates against your active role openings

### How to use Wellfound Jobs Scraper

1. Open the **Input** tab on the actor page
2. Enter a Wellfound search URL (e.g., `https://wellfound.com/jobs?keyword=Rust`) OR set individual filters
3. Set `maxItems` (default 50) and `maxPages` (default 5)
4. Optionally enable `watchlistMode` for daily diffs (only new listings emitted)
5. Click **Start** or call via the Apify REST API or CLI

You can run on demand from the Console, schedule daily with Apify's cron, or integrate with Make / Zapier / n8n / Slack / Google Sheets.

### How much will scraping Wellfound cost?

This actor is priced per event:

- **Actor Start**: $0.01 once per run
- **Wellfound job record**: tiered, charged per record written

| Apify plan | $/1000 records |
|---|---|
| FREE | $30.00 |
| BRONZE | $25.50 |
| SILVER | $21.00 |
| GOLD | $18.00 |
| PLATINUM | $18.00 |
| DIAMOND | $16.20 |

A daily watchlist for senior IC roles in your stack returns ~30-100 records day 1, then 5-25 per day. Roughly $0.50-$1.80 per day on GOLD.

### Is it legal to scrape Wellfound?

Yes, Wellfound's job listings are publicly accessible to anyone in a browser without logging in. This actor reads the same public pages that Google indexes, with proper rate-limiting (1.1-second delay between requests). It does not log into recruiter accounts, does not access candidate-side data, and does not bypass any technical access control.

For commercial redistribution of raw datasets, consult Wellfound's terms and your legal counsel. For internal sourcing pipelines, recruiting CRMs, comp benchmarks, and AI training, the scraped data is treated like any other public web content.

### Examples

#### Example 1: Rust engineers across all locations

```json
{
  "searchUrl": "https://wellfound.com/jobs?keyword=Rust",
  "maxItems": 100,
  "maxPages": 5
}
````

#### Example 2: Senior backend engineers at Seed-Series B startups, US remote

```json
{
  "keywords": ["senior backend"],
  "locations": ["United States"],
  "remotePolicy": "REMOTE_FRIENDLY",
  "companyStages": ["SEED", "SERIES_A", "SERIES_B"],
  "maxItems": 100
}
```

#### Example 3: Daily watchlist for ML/AI roles

```json
{
  "keywords": ["machine learning engineer", "ml engineer"],
  "watchlistMode": true,
  "maxItems": 50
}
```

#### Example 4: Compensation benchmark scrape (200 Python engineers in NYC)

```json
{
  "keywords": ["python"],
  "locations": ["New York City"],
  "maxItems": 200,
  "maxPages": 10
}
```

Aggregate `salaryMinUsd` and `salaryMaxUsd` downstream by company stage to build a NYC Python comp table.

#### Example 5: Sales prospecting (companies hiring 5+ engineers in your category)

```json
{
  "keywords": ["engineer"],
  "technologies": ["TypeScript", "React"],
  "maxItems": 200
}
```

Group output by `companyName` and filter for ≥5 listings — your ICP prospects.

#### Example 6: VC portfolio-company hiring tracker

```json
{
  "companyUrls": [
    "https://wellfound.com/company/portfolio-co-1",
    "https://wellfound.com/company/portfolio-co-2"
  ],
  "watchlistMode": true,
  "maxItems": 50
}
```

#### Example 7: Fresh-raise early-warning

```json
{
  "companyStages": ["SERIES_A", "SERIES_B"],
  "watchlistMode": true,
  "maxItems": 100
}
```

A startup posting a senior IC role for the first time often correlates with a closed round.

#### Example 8: Founder-friendly compensation peek

```json
{
  "keywords": ["staff engineer"],
  "locations": ["San Francisco"],
  "companyStages": ["SERIES_B", "SERIES_C"],
  "maxItems": 50
}
```

### Input parameters

| Field | Type | Default | Description |
|---|---|---|---|
| `searchUrl` | string | `""` | Direct Wellfound search URL. Overrides individual filters. |
| `keywords` | string\[] | `[]` | Role keywords |
| `locations` | string\[] | `[]` | City or country names |
| `remotePolicy` | enum | `null` | `REMOTE_ONLY`, `REMOTE_FRIENDLY`, `HYBRID`, `ONSITE` |
| `companyStages` | enum\[] | `[]` | `SEED`, `SERIES_A`, `SERIES_B`, `SERIES_C`, `LATER_STAGE` |
| `technologies` | string\[] | `[]` | Tech tags (e.g., `["React", "Python"]`) |
| `companyUrls` | string\[] | `[]` | Watch specific Wellfound company pages |
| `maxItems` | int | `50` | Hard cap on records |
| `maxPages` | int | `5` | Pagination cap |
| `watchlistMode` | bool | `false` | Idempotent diff against KV-stored seen listing IDs |
| `useApifyProxy` | bool | `true` | Apify residential proxy. Recommended. |

### Wellfound output format

#### `wellfound_job`

| Field | Type | Description |
|---|---|---|
| `outputSchemaVersion`, `recordType`, `recordId` | string | Discriminated identity |
| `listingId`, `url`, `applyUrl` | string | Wellfound listing ID + URL + direct apply link |
| `title`, `description` | string | Role title + full description |
| `companyName`, `companyId`, `companyUrl`, `companyDescription`, `companyStage`, `companyFunding`, `companyTeamSize`, `companyLogoUrl` | string/enum/int/string | Company metadata |
| `salaryMinUsd`, `salaryMaxUsd`, `salaryRangeRaw` | int/string | Numeric mirrors + raw |
| `equityMinPct`, `equityMaxPct`, `equityRangeRaw` | float/string | Numeric mirrors + raw |
| `location`, `remotePolicy` | string/enum | Location + remote enum |
| `technologies` | string\[] | Tech stack tags |
| `postedAt`, `scrapedAt` | ISO 8601 | Posted + snapshot times |
| `fieldCompletenessScore`, `agentMarkdown` | int / string | Quality + LLM-ready summary |

#### Wellfound Jobs scraper output example

```json
{
  "outputSchemaVersion": "2026-05-08",
  "recordType": "wellfound_job",
  "recordId": "wellfound:job:1234567",
  "listingId": "1234567",
  "url": "https://wellfound.com/jobs/1234567",
  "title": "Senior Backend Engineer",
  "companyName": "Acme",
  "companyStage": "SERIES_B",
  "companyTeamSize": 45,
  "salaryMinUsd": 180000,
  "salaryMaxUsd": 240000,
  "salaryRangeRaw": "$180K – $240K",
  "equityMinPct": 0.05,
  "equityMaxPct": 0.5,
  "location": "San Francisco",
  "remotePolicy": "REMOTE_FRIENDLY",
  "technologies": ["Rust", "PostgreSQL", "Kubernetes"],
  "postedAt": "2026-05-08T15:00:00.000Z",
  "fieldCompletenessScore": 92,
  "agentMarkdown": "**💼 Senior Backend Engineer @ Acme** (Series B · 45 ppl)\n- 💰 $180K-$240K · 0.05-0.50% equity\n- 📍 San Francisco · 🏠 Remote-friendly\n- 🛠 Rust, PostgreSQL, Kubernetes\n- 📅 posted 2026-05-08\n- 🔗 https://wellfound.com/jobs/1234567"
}
```

### During the Actor run

The actor fetches each search results page sequentially with a 1.1-second delay (well under any reasonable Wellfound rate limit), parses each listing card, validates against a Zod schema, and pushes. Each record is enriched with company metadata when visible on the listing page.

The actor writes:

1. **`OUTPUT`** — compact run summary
2. **`AGENT_BRIEFING`** — markdown digest with top 10 listings by completeness × recency
3. **`WATCHLIST_STATE`** — (when `watchlistMode: true`) seen listing IDs

### FAQ

#### How does Wellfound Jobs Scraper work?

The actor parses Wellfound's public job listing pages with proper rate limiting and a respectful User-Agent. Each listing is normalized into a typed record with numeric salary/equity mirrors, an enum remote-policy, and ISO 8601 timestamps.

#### Can I monitor for new listings only?

Yes. Set `watchlistMode: true`. The actor stores seen listing IDs in its key-value store and emits only listings new since the last run.

#### Can I filter by company stage?

Yes. `companyStages: ["SEED", "SERIES_A", "SERIES_B", "SERIES_C", "LATER_STAGE"]`.

#### Can I get historical data?

This actor reads the live Wellfound site, which surfaces listings posted within Wellfound's active window (typically the last 60 days). Older expired listings are not retrievable.

#### Can I use this with the Apify API?

Yes. POST to `https://api.apify.com/v2/acts/skootle~wellfound-jobs-scraper/runs`.

#### Can I integrate with Make / Zapier / n8n / Slack?

Yes. Click **Integrations** on the actor page.

#### Why does this actor cost more than free job-board scrapers?

This actor ships numeric salary/equity mirrors (no string parsing downstream), normalized remote-policy + company-stage enums, idempotent listing IDs, watchlist diff mode, agent-ready markdown summaries, and continuous maintenance. If you're feeding the data into an ATS, a sourcing pipeline, or an AI agent, those features pay back the per-record cost in saved engineering time.

#### Your feedback

Hit a bug or want a feature? Open an issue on the [Issues tab](https://apify.com/skootle/wellfound-jobs-scraper/issues/open) rather than the reviews page, and we'll fix it fast (typically within 48 hours).

### Why choose Wellfound Jobs Scraper

- **Numeric salary + equity mirrors** — `salaryMinUsd`, `salaryMaxUsd`, `equityMinPct`, `equityMaxPct` ready for analytics. Raw Wellfound strings preserved.
- **Normalized enums** — `remotePolicy`, `companyStage` typed for easy filtering
- **Watchlist diff mode** — only emits NEW listings since the last run
- **Versioned schema** — `outputSchemaVersion: '2026-05-08'`
- **Idempotent record IDs** — `wellfound:job:<id>` stable across runs
- **Agent-grade output** — `agentMarkdown` ready to paste into an LLM context

### Other Skootle actors you might want to check

- **[SAM.gov + USAspending Federal Contracts](https://apify.com/skootle/sam-gov-federal-contracts)** — federal contracting opportunities + award history
- **[Crexi Commercial Real Estate](https://apify.com/skootle/crexi-commercial-real-estate-scraper)** — CRE listings with 50+ fields
- **[Reddit Subreddit Scraper](https://apify.com/skootle/reddit-subreddit-monitor)** — sourcing signal mining on r/cscareerquestions
- **[GitHub Trending Repos](https://apify.com/skootle/github-trending)** — contributor lists from trending repos
- **[Hacker News Watchlist](https://apify.com/skootle/hackernews-watchlist)** — `Who Is Hiring?` thread + jobs stream

### Support and contact

File issues on this actor's page — replies within 48 hours.

# Actor input Schema

## `searchQueries` (type: `array`):

Job-title or keyword searches, for example react developer or product designer.

## `locations` (type: `array`):

Optional locations, for example San Francisco, Remote, New York.

## `remoteOnly` (type: `boolean`):

Only return jobs marked as remote.

## `roleTypes` (type: `array`):

Filter to specific role types when Wellfound exposes the field.

## `companyStages` (type: `array`):

Optional startup stage filters. Returned as metadata when available.

## `salaryMin` (type: `integer`):

Only keep jobs whose exposed salary range can satisfy this minimum.

## `equityMin` (type: `number`):

Only keep jobs whose exposed equity range can satisfy this minimum, for example 0.1.

## `maxResults` (type: `integer`):

Maximum number of job records to return.

## `scrapeJobDetails` (type: `boolean`):

Experimental and currently not promised for launch. Keep false for stable public-index output.

## Actor input object example

```json
{
  "searchQueries": [
    "product designer"
  ],
  "remoteOnly": false,
  "maxResults": 100,
  "scrapeJobDetails": false
}
```

# Actor output Schema

## `jobs` (type: `string`):

All scraped Wellfound job listings in the default dataset. Each item is a normalized job record with job, company, location, compensation, apply URL, and scrape metadata fields.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQueries": [
        "product designer"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("skootle/wellfound-jobs-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "searchQueries": ["product designer"] }

# Run the Actor and wait for it to finish
run = client.actor("skootle/wellfound-jobs-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "product designer"
  ]
}' |
apify call skootle/wellfound-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=skootle/wellfound-jobs-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "💼 Wellfound Jobs Scraper",
        "description": "Scrape Wellfound (formerly AngelList Talent) for startup job listings. Title, company, stage, funding, team size, role description, salary range (numeric USD), equity, location, remote enum, stack, posted date. Export, run via API, schedule, or integrate with other tools.",
        "version": "0.1",
        "x-build-id": "VCRdaFw1Yu0xcSp1Q"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/skootle~wellfound-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-skootle-wellfound-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/skootle~wellfound-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-skootle-wellfound-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/skootle~wellfound-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-skootle-wellfound-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "searchQueries"
                ],
                "properties": {
                    "searchQueries": {
                        "title": "Search queries",
                        "type": "array",
                        "description": "Job-title or keyword searches, for example react developer or product designer.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "locations": {
                        "title": "Locations",
                        "type": "array",
                        "description": "Optional locations, for example San Francisco, Remote, New York.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "remoteOnly": {
                        "title": "Remote only",
                        "type": "boolean",
                        "description": "Only return jobs marked as remote.",
                        "default": false
                    },
                    "roleTypes": {
                        "title": "Role types",
                        "type": "array",
                        "description": "Filter to specific role types when Wellfound exposes the field.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "full-time",
                                "contract",
                                "internship",
                                "co-founder"
                            ],
                            "enumTitles": [
                                "Full time",
                                "Contract",
                                "Internship",
                                "Co-founder"
                            ]
                        }
                    },
                    "companyStages": {
                        "title": "Company stages",
                        "type": "array",
                        "description": "Optional startup stage filters. Returned as metadata when available.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "seed",
                                "series-a",
                                "series-b",
                                "series-c-plus",
                                "public"
                            ],
                            "enumTitles": [
                                "Seed",
                                "Series A",
                                "Series B",
                                "Series C+",
                                "Public"
                            ]
                        }
                    },
                    "salaryMin": {
                        "title": "Minimum salary USD",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep jobs whose exposed salary range can satisfy this minimum."
                    },
                    "equityMin": {
                        "title": "Minimum equity percent",
                        "minimum": 0,
                        "type": "number",
                        "description": "Only keep jobs whose exposed equity range can satisfy this minimum, for example 0.1."
                    },
                    "maxResults": {
                        "title": "Maximum results",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of job records to return.",
                        "default": 100
                    },
                    "scrapeJobDetails": {
                        "title": "Attempt detail-page enrichment",
                        "type": "boolean",
                        "description": "Experimental and currently not promised for launch. Keep false for stable public-index output.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
