# ArtStation.com Artist Profile & Email Scraper (`dionysus_way/artstation`) Actor

Extract email addresses and profile data from ArtStation.com artists and studios at scale. Search by location, skills, or availability. Get emails, bios, social links, portfolios, and project galleries.

- **URL**: https://apify.com/dionysus\_way/artstation.md
- **Developed by:** [Dionysus](https://apify.com/dionysus_way) (community)
- **Categories:** Lead generation, Automation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.20 / 1,000 artists

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## 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

### ArtStation Artist Profile & Email Scraper

_(scrapes artist profiles, emails, portfolios, and social links from **ArtStation.com**)_
ArtStation may limit results depending on search filters. Studio pages are supported.

#### Example URLs

- **Artist Search**: `https://www.artstation.com/search/artists?countries_include=US`
- **Artist Search**: `https://www.artstation.com/search/artists?sort_by=followers&countries_include=IT`
- **Artist Search**: `https://www.artstation.com/search/artists?availability_include=freelance&skill_ids_include=21`
- **Studio Search**: `https://www.artstation.com/studios?country_names=Japan`

**Don't worry — the scraper automatically detects artist vs studio search URLs.**

Extract **artist profiles**, **email addresses**, and **portfolio data** from ArtStation to **JSON** or **CSV**. This scraper gathers comprehensive artist details including bios, skills, software, social links, and project previews from both profile pages and resume pages.

#### What you get

- **username** - artist's username (e.g. "dete")
- **full_name** - display name (e.g. "Daniel Thiger")
- **headline** - tagline or title
- **email** - email address extracted from bio, social profiles, website, or resume page
- **bio** - portfolio summary text
- **location** & **country** - geographic info
- **skills** - comma-separated list of skills
- **software** - comma-separated list of tools used
- **followers_count** - number of followers
- **profile_url** - link to the artist's ArtStation page
- **website_url** - personal website
- **linkedin_url**, **instagram_url**, **twitter_url** - social links
- **social_urls** - any additional social profile URLs
- **projects_count_page1** - number of projects on the first page
- **project_urls_page1** - links to featured projects
- **project_image_urls_page1** - thumbnail links to featured projects
- **user_id** - internal ArtStation ID
- **search_url** & **source_page** - which search and page the artist was found on
- **total_count_from_api** - total artists in the search results
- **scraped_at** - timestamp of when the profile was scraped

#### Sample output

```json
{
    "username": "artist_username",
    "full_name": "Artist Name",
    "email": "name@domain.com",
    "headline": "3D Character Artist",
    "location": "Los Angeles, California",
    "country": "United States",
    "followers_count": 8450,
    "skills": "Character Modeling, Texturing, Sculpting",
    "software": "Blender, Substance Painter, ZBrush",
    "bio": "Senior 3D artist with experience in game development...",
    "website_url": "",
    "linkedin_url": "",
    "instagram_url": "",
    "twitter_url": "",
    "projects_count_page1": 15,
    "project_urls_page1": "",
    "project_image_urls_page1": "",
    "scraped_at": "2026-04-29T20:19:54.000Z"
}
````

#### Typical use cases

- **Recruitment** - find artists by location, skills, and availability to build a talent pipeline.
- **Portfolio Discovery** - browse trending artists sorted by followers or recent activity.
- **Market Research** - analyze skill sets and tools used by artists in specific regions.
- **Competitor Analysis** - monitor the portfolio activity of specific artists or studios.

#### Quick start

1. Add one or more **Start URLs** (like `https://www.artstation.com/search/artists?countries_include=US`).
2. (Optional) Set **Max Items** to limit the number of artists scraped (default: 1000, max: 9990).
3. Click **Run**.
4. Download your data in JSON, CSV, or Excel format.

#### FAQ

**Can I scrape studio pages?**
Yes! Use a URL like `https://www.artstation.com/studios?country_names=Japan`.

**Can I scrape without location/country filters?**
Bare `/search/artists` returns blank results. Add at least one query parameter like `countries_include=US`.

**Does it extract email addresses?**
Yes — emails are extracted when found.

**What if the scraper gets blocked?**
The scraper automatically retries with a fresh connection. Datacenter proxies are used by default for cost efficiency.

**How can you contact me?**
Open an issue on the Apify interface.

***

*Ready? Paste an ArtStation search URL and start building your artist database!*

***

This Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by ArtStation or any of its subsidiaries.

# Actor input Schema

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

ArtStation artist search or studios URLs to scrape. Copy from browser after applying filters (country, skills, software, availability).

## `maxItemsPerUrl` (type: `integer`):

Maximum number of artists or studios to collect from each search URL.

## Actor input object example

```json
{
  "startUrls": [
    "https://www.artstation.com/search/artists?sort_by=followers&availability_include=contract&countries_include=BH"
  ],
  "maxItemsPerUrl": 1000
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "startUrls": [
        "https://www.artstation.com/search/artists?sort_by=followers&availability_include=contract&countries_include=BH"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("dionysus_way/artstation").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 = { "startUrls": ["https://www.artstation.com/search/artists?sort_by=followers&availability_include=contract&countries_include=BH"] }

# Run the Actor and wait for it to finish
run = client.actor("dionysus_way/artstation").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 '{
  "startUrls": [
    "https://www.artstation.com/search/artists?sort_by=followers&availability_include=contract&countries_include=BH"
  ]
}' |
apify call dionysus_way/artstation --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "ArtStation.com Artist Profile & Email Scraper",
        "description": "Extract email addresses and profile data from ArtStation.com artists and studios at scale. Search by location, skills, or availability. Get emails, bios, social links, portfolios, and project galleries.",
        "version": "0.0",
        "x-build-id": "RebGfKHtQZo30Af8m"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/dionysus_way~artstation/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-dionysus_way-artstation",
                "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/dionysus_way~artstation/runs": {
            "post": {
                "operationId": "runs-sync-dionysus_way-artstation",
                "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/dionysus_way~artstation/run-sync": {
            "post": {
                "operationId": "run-sync-dionysus_way-artstation",
                "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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "ArtStation Search / Studio URLs",
                        "minItems": 1,
                        "maxItems": 1,
                        "type": "array",
                        "description": "ArtStation artist search or studios URLs to scrape. Copy from browser after applying filters (country, skills, software, availability).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItemsPerUrl": {
                        "title": "Max Artists/Studios per URL",
                        "minimum": 1,
                        "maximum": 9990,
                        "type": "integer",
                        "description": "Maximum number of artists or studios to collect from each search URL.",
                        "default": 1000
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
