
Behance Profile Scraper
- babak/behance-profile-scraper
- Modified
- Users 4
- Runs 105
- Created by
Vladyslav Korzh
Behance Profile Scraper allows you to extract data from hundreds of profiles in a short time. Add URLs and get full profile info, works, appreciations, moodboards, services, NFTs, and much more. Go beyond the limitations of the unofficial Behance API. Download data in various structured formats.
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"profileUrl": "https://www.behance.net/ramotion",
"worksMaxItems": 2,
"workCommentsLimit": 5,
"moodboardsMaximumLimit": 2,
"appreciationsMaximumLimit": 2,
"servicesMaximumLimit": 2,
"nftsMaximumLimit": 2,
"maxConcurrency": 100,
"proxyConfiguration": {
"useApifyProxy": true
}
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/babak~behance-profile-scraper/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'