# Dribbble Jobs Scraper: Design & UX Jobs (`santamaria-automations/dribbble-jobs-scraper`) Actor

Extract design job listings from Dribbble.com/jobs - the design community's dedicated job board. Returns title, company, location, description, salary, employment type, job category (Product Design, Brand Design, Motion Design, etc.) and contact details.

- **URL**: https://apify.com/santamaria-automations/dribbble-jobs-scraper.md
- **Developed by:** [NanoScrape](https://apify.com/santamaria-automations) (community)
- **Categories:** Jobs, Automation, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 serp results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## Dribbble Jobs Scraper: US Design & UX Jobs

Extract design job listings from [Dribbble Jobs](https://dribbble.com/jobs) - the dedicated job board for the world's design community. Covers UI/UX, product design, brand design, motion design, illustration, and more.

Built on standard HTTP with HTML + JSON-LD parsing. No browser automation, no captcha.

### What it does

Pulls live design job listings from Dribbble's job board. Search by keyword (e.g. "product designer", "brand designer", "motion designer"), filter by location or remote status, and optionally fetch full job descriptions from each listing page. Returns structured data including title, company, location, employment type, salary (when disclosed), and all four description formats.

### Sample output

```json
{
  "_type": "job",
  "id": "309416-Senior-Product-Designer",
  "title": "Senior Product Designer",
  "job_url": "https://dribbble.com/jobs/309416-Senior-Product-Designer",
  "source_url": "https://dribbble.com/jobs/309416-Senior-Product-Designer",
  "source_platform": "dribbble.com",
  "company_name": "CashCow",
  "company_website": "https://www.cashcow.com",
  "company_logo_url": "https://cdn.dribbble.com/userupload/12345/file/logo.png",
  "location": "Remote",
  "country": null,
  "remote_type": "fully-remote",
  "posted_at_text": "2026-08-20T09:00:00-04:00",
  "posted_at_datetime": "2026-08-20T13:00:00Z",
  "employment_type": "full-time",
  "salary_min": 120000,
  "salary_max": 160000,
  "salary_currency": "USD",
  "salary_period": "year",
  "salary_text": null,
  "description": "Full-time, Remote, 5+ years experience. CashCow lives at the intersection of mobile gaming, rewards, and real money...",
  "description_full": "Full-time, Remote, 5+ years experience\n\nAbout the Role\nCashCow lives at the intersection of mobile gaming, rewards...",
  "description_html": "<p>Full-time, Remote, 5+ years experience</p><h2>About the Role</h2><p>CashCow lives...</p>",
  "description_md": "Full-time, Remote, 5+ years experience\n\n## About the Role\n\nCashCow lives...",
  "contact_emails": [],
  "contact_phones": [],
  "contact_urls": ["https://www.cashcow.com/careers"],
  "apply_url": null,
  "job_category": "Product Design",
  "experience_level": "Senior",
  "search_query": "product designer",
  "scraped_at": "2026-08-24T10:30:00Z"
}
```

### Pricing

| Event | Price |
|---|---|
| Actor start | $0.001 |
| SERP result (`includeJobDetails=false`) | $0.003 per job |
| Detail result (`includeJobDetails=true`) | $0.005 per job |

Typical cost: **$3 per 1,000 jobs** in SERP mode (title, company, location, job\_category, experience\_level). Detail mode ($5/1,000) adds full description, salary, company website, and contact extraction.

**New to Apify?** Every account gets a $5 free monthly platform credit - enough for around 1,000 results before you pay anything.

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `searchQueries` | array of strings | - | Keywords like `"product designer"`, `"brand designer"`. Each runs as a separate search. Leave empty to browse all design jobs. |
| `searchUrls` | array of strings | - | Direct Dribbble Jobs search URLs. |
| `startUrls` | array of strings | - | Direct Dribbble job detail page URLs for targeted scraping. |
| `location` | string | - | City, region or country filter, e.g. `"New York"`, `"Remote"`, `"United States"`. |
| `remoteOnly` | boolean | false | Return only remote-eligible positions. |
| `includeJobDetails` | boolean | false | Fetch full PDP for description, salary, company website, and contacts. Charges `job-detail-result`. |
| `includeCompanyDetails` | boolean | false | Surface company website and logo URL (requires PDP fetch). |
| `maxResults` | integer | 5 | Total cap across all queries (max 5000). |
| `maxResultsPerQuery` | integer | 5 | Cap per individual keyword. |
| `maxConcurrency` | integer | 3 | Parallel detail page fetches when includeJobDetails=true. |

### Output fields

**Identity**

- `id`: Dribbble job slug (from URL)
- `title`: job title as listed
- `job_url`, `source_url`: canonical Dribbble job detail URL

**Company**

- `company_name`: hiring company
- `company_website`: company site (when available in JSON-LD)
- `company_logo_url`: company logo image URL

**Location**

- `location`: display location string
- `country`: country code or name (when present in JSON-LD)
- `remote_type`: `"fully-remote"`, `"hybrid"`, or `"on-site"`

**Job Details**

- `employment_type`: full-time, part-time, contract, temporary, internship
- `salary_min`, `salary_max`: salary bounds (when disclosed)
- `salary_currency`, `salary_period`: currency + pay interval
- `apply_url`: external application URL (when present in description)

**Design-specific**

- `job_category`: design discipline inferred from title: Product Design, Brand Design, Motion Design, UX Design, UI Design, Graphic Design, Illustration, Web Design, 3D Design, Design Leadership
- `experience_level`: Junior, Mid, Senior, Lead, Staff (inferred from title)

**Description**

- `description`: short plain-text snippet (~500 chars)
- `description_full`: full plain text with line breaks
- `description_html`: raw HTML from JSON-LD
- `description_md`: Markdown rendering (headings, lists, links preserved)

**Contacts**

- `contact_emails[]`: emails extracted from description
- `contact_phones[]`: phones extracted from description
- `contact_urls[]`: external URLs extracted from description

**Meta**

- `posted_at_datetime`: ISO 8601 UTC
- `search_query`, `scraped_at`

### Use with AI Agents

This actor is available as an MCP tool:

```
https://mcp.apify.com?tools=santamaria-automations/dribbble-jobs-scraper
```

Point any MCP-compatible agent at that URL to let it search and retrieve design job listings on demand.

### Why this scraper

- **Design-vertical specialist**: Dribbble Jobs is purpose-built for the design community - listings are UI/UX, product design, brand, motion, and illustration roles only, not generic software or marketing noise
- **Portfolio-focused hires**: Dribbble's audience actively maintains public portfolios - the job\_category and experience\_level fields help map listings to the right designer tier
- **JSON-LD on every listing**: Dribbble embeds structured schema.org/JobPosting on each detail page - title, company, location, employmentType, datePosted, and description are machine-readable without fragile CSS selectors
- **No auth required**: all listings are publicly accessible without a Dribbble account

### Common use cases

- Design agency talent sourcing and competitive hiring intelligence
- Design job market analysis by role (Product Design vs Brand Design vs Motion)
- Remote design job boards and aggregators
- Salary benchmarking for UI/UX and product design roles
- Portfolio site lead generation (companies posting on Dribbble value design quality)

### Related Actors

- [Job Feed](https://apify.com/santamaria-automations/job-feed): normalized feed across 50+ international job boards
- [Career Site Jobs Scraper](https://apify.com/santamaria-automations/career-site-jobs-scraper): direct-from-career-pages extraction
- [Website Job Extractor](https://apify.com/santamaria-automations/website-job-extractor): any-website job extractor
- [Workatastartup Scraper](https://apify.com/santamaria-automations/workatastartup-scraper): Y Combinator startup jobs (many design roles)
- [Levels.fyi Scraper](https://apify.com/santamaria-automations/levels-fyi-scraper): FAANG-tier tech salaries including design
- [WayUp Scraper](https://apify.com/santamaria-automations/wayup-us-scraper): US student and entry-level roles including design internships

### Support

Found an issue or have a question? Open a ticket via the [Issues tab](https://apify.com/santamaria-automations/dribbble-jobs-scraper/issues) or email contact@nanoscrape.com - we reply within 6 hours on business days.

# Actor input Schema

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

One or more design job titles or keywords to search on Dribbble Jobs. Each entry runs as a separate search. Examples: 'product designer', 'brand designer', 'motion designer'. Leave empty to browse all design jobs.

## `searchUrls` (type: `array`):

Direct Dribbble Jobs search URLs to crawl. Example: https://dribbble.com/jobs?keyword=ux+designer\&location=New+York.

## `startUrls` (type: `array`):

Direct Dribbble job detail page URLs to scrape. Example: https://dribbble.com/jobs/309515-Multidisciplinary-Designer. Use for targeted scraping of known job listings.

## `location` (type: `string`):

City, region or country filter. Examples: 'New York', 'Remote', 'United States', 'London'. Leave empty for worldwide results.

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

When enabled, only return remote-eligible design jobs.

## `includeJobDetails` (type: `boolean`):

When enabled, fetches the full job detail page for each listing to populate description\_full, description\_html, description\_md, salary, and contact fields. Charges the job-detail-result PPE event instead of job-serp-result.

## `includeCompanyDetails` (type: `boolean`):

Surface company website and logo URL from the job detail page. Requires a PDP fetch per listing.

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

Total cap across all search queries.

## `maxResultsPerQuery` (type: `integer`):

Maximum results per individual search keyword or URL.

## `maxConcurrency` (type: `integer`):

Maximum number of parallel detail page fetches (when includeJobDetails=true).

## Actor input object example

```json
{
  "searchQueries": [
    "product designer"
  ],
  "location": "New York",
  "remoteOnly": false,
  "includeJobDetails": false,
  "includeCompanyDetails": false,
  "maxResults": 5,
  "maxResultsPerQuery": 5,
  "maxConcurrency": 3
}
```

# Actor output Schema

## `jobListings` (type: `string`):

Dataset containing scraped Dribbble design job listings. Each row includes title, company, location, description, salary, job\_category, experience\_level, and contact details.

# 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"
    ],
    "remoteOnly": false,
    "includeJobDetails": false,
    "includeCompanyDetails": false,
    "maxResults": 5,
    "maxResultsPerQuery": 5,
    "maxConcurrency": 3
};

// Run the Actor and wait for it to finish
const run = await client.actor("santamaria-automations/dribbble-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"],
    "remoteOnly": False,
    "includeJobDetails": False,
    "includeCompanyDetails": False,
    "maxResults": 5,
    "maxResultsPerQuery": 5,
    "maxConcurrency": 3,
}

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

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).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"
  ],
  "remoteOnly": false,
  "includeJobDetails": false,
  "includeCompanyDetails": false,
  "maxResults": 5,
  "maxResultsPerQuery": 5,
  "maxConcurrency": 3
}' |
apify call santamaria-automations/dribbble-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,santamaria-automations/dribbble-jobs-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/B8jXLFfUcXHHgy97n/builds/ucUWNA31gfc9vo0tu/openapi.json
