# 🚀 Envato Elements Scraper · 5,000 Free Assets/Month (`omkar-cloud/envato-elements-scraper`) Actor

Envato Elements Scraper gets you photos, stock video, music, fonts & templates ⚡ fast, 🎯 100% accurate and 🔍 ridiculously detailed — tags, attributes, previews & authors by search, similar or portfolio. 💰 $1 per 1,000 assets, no start fee. Scrape your first 5,000 assets free every month 🚀

- **URL**: https://apify.com/omkar-cloud/envato-elements-scraper.md
- **Developed by:** [Omkar Cloud](https://apify.com/omkar-cloud) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 asset scrapeds

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?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

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

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Envato Elements Scraper

Envato Elements Scraper by Omkar Cloud gets you 🎯 accurate, 🔍 detailed Envato data.

Envato uses Cloudflare bot protection to stop you from getting its data.

Envato Elements Scraper beats it, so you get the data, and can successfully complete your project.

**$1 per 1,000 assets.** And with Apify's free plan you get $5 of credit every month, so your first **~5,000 assets each month are free**.

This is an excellent Actor made by Omkar Cloud, which is Rated Excellent — [4.7 based on 30 reviews on Trustpilot](https://www.trustpilot.com/review/omkar.cloud).

👉 [**Try Envato Elements Scraper free**](https://apify.com/omkar-cloud/envato-elements-scraper) — your first ~5,000 assets are Free.

### What can I get

- 🔍 **Search millions of Envato Elements assets** — photos, stock video, music, sound effects, fonts, graphics, 3D & templates
- 🧭 **Similar items & author portfolios** — lookalikes of any asset and every asset an author publishes
- 🎁 **This week's free files** — the whole free set in one run
- 🧾 **Full details** — description, every tag and attribute, audio, video & font previews, series and related assets

### Why Envato Elements Scraper

Most other Envato scrapers fail you in one of four ways:

- 🗄️ **Inaccurate, cached, stale data**
- 🧩 **Low-detail data** — a few fields per row, never the full picture
- 💸 **Pay more to get the same data**
- 🪦 **Works today, breaks next month** — nobody maintains it

Envato Elements Scraper is scraped live on every run, priced honestly, and actively maintained.

### Example: A Full Envato Elements Asset

```json
{
  "id": "PQH6NYN",
  "name": "3d Logo Mockup",
  "link": "https://elements.envato.com/3d-logo-mockup-PQH6NYN",
  "type_name": "Graphic Templates",
  "author": { "username": "fabstudio", "name": "fabstudio", "link": "https://elements.envato.com/user/fabstudio" },
  "categories": ["Product Mockups"],
  "tags": ["3d", "logo", "mockup", "wall", "sign", "office", "branding", "realistic"],
  "attributes": {
    "dpi": "300",
    "dimensions": { "unit": "px", "width": 4000, "height": 3000 },
    "is_layered": true,
    "color_space": "RGB",
    "graphic_templates_file_types": ["PSD"],
    "graphic_templates_applications_supported": ["Adobe Photoshop"]
  },
  "published_at": "2026-05-26T05:52:49Z"
}
```

*Trimmed for readability.*

### Get Started with 5,000 Free Assets

1. [Hit **Try for Free Button**](https://apify.com/omkar-cloud/envato-elements-scraper) — the input is pre-filled with a "logo" search in Photos.
2. Enjoy your data 😎.

### Pricing

High value, Low price.

| What | Price | What you get |
|---|---|---|
| **Standard assets** | **$1 per 1,000** | id, name, link, type, author, categories, image, video preview, audio preview with durations + source context |
| **Detailed assets** | $2 per 1,000 | Everything above + description, all tags, every attribute, file size, cover and preview images, 540p video previews, music variants and stems, font styles, series and related assets |

No start fee — you pay only for the rows you get. Control your spend with **Max Results per Source**: 1,000 assets ≈ $1.

💡 Apify's free plan includes $5 of credit every month — about **5,000 free assets, every month**.

👉 [**Scrape your first 5,000 assets free**](https://apify.com/omkar-cloud/envato-elements-scraper)

### Run It from Code

Grab your API token from [Integrations Settings here](https://console.apify.com/settings/integrations) and replace `<YOUR_API_TOKEN>` below.

**Python** (`pip install apify-client`)

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_API_TOKEN>")
run = client.actor("omkar-cloud/envato-elements-scraper").call(run_input={
    "contentType": "music",
    "searchQueries": ["logo"],
    "maxResultsPerSource": 50,
})
for asset in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(asset["name"], asset["audio_preview"]["preview_link"])
```

**Node.js** (`npm install apify-client`)

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

const client = new ApifyClient({ token: '<YOUR_API_TOKEN>' });
const run = await client.actor('omkar-cloud/envato-elements-scraper').call({
    contentType: 'stock-video',
    searchQueries: ['logo'],
    scrapeItemDetails: true,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

### FAQ

**How much does a run cost?** $1 per 1,000 assets, flat on every Apify plan, with no start fee. Fully detailed assets cost $2 per 1,000.

**Which content types are covered?** All 14: stock video, video templates, music, sound effects, graphic templates, graphics, 3D, presentation templates, photos, fonts, add-ons, web templates, CMS templates and WordPress.

**Do I need an Envato subscription or proxies?** No. The Actor returns public asset data and previews, not the paid downloads.

### 💬 Have Questions? We Have Answers.

You're a business owner — we know how hard completing a project can be. So we offer full support: just message us and we'll reply ✅ with a solution within 1 working day.

[![Message Us on WhatsApp](https://raw.githubusercontent.com/omkarcloud/assets/master/images/whatsapp-us.png)](https://api.whatsapp.com/send?phone=918178804274\&text=I%20need%20help%20with%20using%20the%20Envato%20Elements%20Scraper%20Actor.)
[![Ask Us on Email](https://raw.githubusercontent.com/omkarcloud/assets/master/images/ask-on-email.png)](mailto:happy.to.help@omkar.cloud?subject=Help%20with%20Envato%20Elements%20Scraper%20Actor\&body=I%20need%20help%20with%20using%20the%20Envato%20Elements%20Scraper%20Actor.)

You are important to us — just message us and we will solve your problem ✅ within 1 working day. 🩷 Pinky Promise 🤙!

### Related Actors

- 🛒 [**Envato Scraper**](https://apify.com/omkar-cloud/envato-scraper) — ThemeForest & CodeCanyon items with prices, sales, ratings & licenses. $1 per 1,000 items.
- ✍️ [**Envato Reviews Scraper**](https://apify.com/omkar-cloud/envato-reviews-scraper) — buyer reviews with author replies and comment threads. $0.50 per 1,000 reviews.

### Popular Actors by Omkar Cloud

- [**IMDb Scraper**](https://apify.com/omkar-cloud/imdb-scraper) — IMDb titles: ratings, cast, box office & charts
- [**G2 Product Scraper**](https://apify.com/omkar-cloud/g2-product-scraper) — G2 product details, ratings & AI-found contacts
- [**Website Email Contact Scraper**](https://apify.com/omkar-cloud/website-email-contact-scraper) — emails, phones & socials from any website
- [**AliExpress Product Scraper**](https://apify.com/omkar-cloud/aliexpress-product-scraper) — live product details, SKU variants, stock & shipping
- [**Booking Scraper**](https://apify.com/omkar-cloud/booking-scraper) — Booking.com hotels: prices, ratings, rooms & amenities

👉 [**Scrape your first 5,000 assets free now**](https://apify.com/omkar-cloud/envato-elements-scraper)

# Actor input Schema

## `contentType` (type: `string`):

The Envato Elements content type to search or browse.

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

Keywords to search, e.g. `logo`.

## `browseType` (type: `boolean`):

Scrape the whole content type (or the category below) without a keyword.

## `category` (type: `string`):

Category slug within the content type, e.g. `stock-footage` for Stock Video or `product-mockups` for Graphic Templates.

## `sort` (type: `string`):

Order of the results.

## `similarTo` (type: `array`):

Asset IDs or URLs; scrapes assets similar to each one, e.g. `WN8QY3M`.

## `authors` (type: `array`):

Author usernames or profile URLs, e.g. `fabstudio`.

## `freeFiles` (type: `boolean`):

Scrape this week's free Envato Elements files.

## `items` (type: `array`):

Asset IDs or URLs, e.g. `PQH6NYN` or `https://elements.envato.com/3d-logo-mockup-PQH6NYN`.

## `maxResultsPerSource` (type: `integer`):

Most assets per keyword, similar item or author (Envato Elements shows up to 24 pages per search). Caps your cost.

## `scrapeItemDetails` (type: `boolean`):

Fetch every asset's full page: description, all tags, every attribute, audio / video / font previews, series and related items. Billed as a detailed asset.

## Actor input object example

```json
{
  "contentType": "photos",
  "searchQueries": [
    "logo"
  ],
  "browseType": false,
  "sort": "",
  "authors": [
    "fabstudio"
  ],
  "freeFiles": false,
  "items": [
    "PQH6NYN"
  ],
  "maxResultsPerSource": 100,
  "scrapeItemDetails": false
}
```

# Actor output Schema

## `results` (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 = {
    "searchQueries": [
        "logo"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("omkar-cloud/envato-elements-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": ["logo"] }

# Run the Actor and wait for it to finish
run = client.actor("omkar-cloud/envato-elements-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": [
    "logo"
  ]
}' |
apify call omkar-cloud/envato-elements-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,omkar-cloud/envato-elements-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/1s4kFicjO72NB6Yce/builds/LYmXW6Gy3NRV7hEkh/openapi.json
