
Behance Profile Scraper
- babak/behance-profile-scraper
- Modified
- Users 4
- Runs 109
- 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.
import { ApifyClient } from 'apify-client';
// Initialize the ApifyClient with API token
const client = new ApifyClient({
token: '<YOUR_API_TOKEN>',
});
// Prepare Actor input
const input = {
"profileUrl": "https://www.behance.net/ramotion",
"worksMaxItems": 2,
"workCommentsLimit": 5,
"moodboardsMaximumLimit": 2,
"appreciationsMaximumLimit": 2,
"servicesMaximumLimit": 2,
"nftsMaximumLimit": 2,
"maxConcurrency": 100,
"proxyConfiguration": {
"useApifyProxy": true
}
};
(async () => {
// Run the Actor and wait for it to finish
const run = await client.actor("babak/behance-profile-scraper").call(input);
// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
console.dir(item);
});
})();