Tokopedia scraper avatar

Tokopedia scraper

Pricing

from $2.00 / 1,000 results

Go to Apify Store
Tokopedia scraper

Tokopedia scraper

Extract structured product data from millions of listings on Tokopedia search by keyword or start URLs, sort by price/reviews, and bypass anti-bot protections seamlessly. Get comprehensive fields including title, price, shop name, and URL. Flat $0.005/prod simple, predictable, and scalable pricing.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Forlex Lab

Forlex Lab

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

10 days ago

Last modified

Share

๐Ÿ›’ Tokopedia Scraper & Data Extractor API

Extract structured product data from millions of listings on Tokopedia โ€” search by keyword or start URLs, sort by price/reviews, filter by tier, and bypass anti-bot protections seamlessly using our lightning-fast proprietary data engine. Get comprehensive e-commerce fields including title, prices (original + discount), shop name/tier, and direct URL. Export directly to JSON, CSV, or Excel.

Apify Store Pay Per Event No Auth Required


๐Ÿš€ Why Use This Tokopedia API Alternative?

We analyzed the market and built this Tokopedia product scraper to be the absolute best value on Apify for e-commerce data extraction.

FeatureThis Tokopedia ScraperMost Alternatives
Cost EfficiencyFractions of a cent per productHigh start prices or expensive monthly rentals
Speed & Reliabilityโœ… Proprietary Engine (Ultra-Fast)โŒ Standard HTML / Browser Automation (Slow & Fragile)
Input Flexibilityโœ… Keywords + Direct URLsโŒ URLs only
Proxy Requiredโœ… OptionalโŒ Mandatory Residential Proxy (Expensive)
Rich Filtersโœ… Yes (Price, Rating, Tier, etc.)โŒ Basic filters only
Output Fields15+ Fields (Typed)Missing shop tiers, original prices, numeric sold count

โœจ Tokopedia Data Extraction Features

  • ๐Ÿ” 2 Search Modes โ€” keyword search (e.g. laptop gaming) or direct Tokopedia search URLs.
  • ๐ŸŽฏ 7 Advanced Filters โ€” filter by min/max price, minimum rating, item condition, shop tier (Mall / Power Shop), free shipping, and discount-only.
  • ๐Ÿ“„ 15 Structured Output Fields โ€” heavily detailed payload including original price, discount percentage, numeric sold count, and shop tier.
  • ๐Ÿ›ก๏ธ Anti-bot Bypass โ€” seamless, lightweight data extraction engine that prevents blocks without the overhead of headless browsers.
  • โšก Ultra-Fast & Cheap โ€” designed for absolute maximum performance and minimal compute usage, saving you money on every run.
  • ๐Ÿ“ฆ Multiple Export Formats โ€” Download Tokopedia data in JSON, CSV, Excel, XML, HTML Table.

๐ŸŽฏ Use Cases for Tokopedia Data

AudienceApplications
E-Commerce SellersMonitor competitor pricing, product availability, and campaigns.
Market ResearchersAnalyze trends, product offerings, and market saturation in Indonesia.
BrandsTrack MAP (Minimum Advertised Price) violations and seller compliance.
DropshippersFind hot products, discounted items, and top-rated Mall/Power Shop suppliers.

๐Ÿ’ก Quick Start

1. Sign Up (Free $5 Credit)

Create Free Account

Uses our referral link โ€” you get $5 free credit to test immediately. (At our rates, that covers thousands of Tokopedia products for free!)

{
"searchKeyword": "laptop gaming",
"sortBy": "obm",
"maxItems": 50,
"minRating": 4.5,
"shopTier": 3,
"freeShipping": true,
"discountOnly": true
}

3. Download Results

Results appear in the Dataset tab. Export as JSON, CSV, Excel, XML, or HTML Table for immediate analysis.


โš™๏ธ Input Parameters

ParameterTypeRequiredDefaultDescription
searchKeywordstringNo*โ€”Keywords to search on Tokopedia (e.g. "sepatu lari"). *Required if no startUrls.
startUrlsarrayNo*โ€”Direct Tokopedia search URLs. Overrides searchKeyword.
sortByenumNoobmobm (Relevance) | 23 (Reviews) | 9 (Highest Price) | 8 (Lowest Price) | 11 (Newest)
maxItemsintegerNo20Max products to scrape from Tokopedia (1โ€“10,000).
minPrice / maxPriceintegerNoโ€”Filter by price range in IDR.
minRatingnumberNoโ€”Filter by minimum rating (0.0-5.0).
conditionenumNoโ€”Filter by product condition (new or used).
shopTierenumNoโ€”Filter by shop tier: 2 (Mall / Official) or 3 (Power Shop).
freeShippingbooleanNofalseOnly return products with Free Shipping (Bebas Ongkir Ekstra).
discountOnlybooleanNofalseOnly return products currently discounted.
proxyConfigurationobjectNoโ€”Proxies are optional. Our extraction engine runs efficiently without them.

๐Ÿ’ฐ Pricing (Pay Per Event)

We use the most cost-effective Pay-Per-Event pricing to blow the competition out of the water. Our highly optimized scraper runs on just 128MB of memory, allowing us to pass the savings directly to you.

EventRate
Actor Start (apify-actor-start)$0.001
Product Result (apify-default-dataset-item)$0.002 (per item scraped)

Examples:

  • 100 products: $0.001 + (100 ร— $0.002) = $0.201
  • 1,000 products: $0.001 + (1000 ร— $0.002) = $2.001

๐Ÿ”ง Integration

Node.js

$npm install apify-client
import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('forlex/tokopedia-scraper').call({
searchKeyword: 'samsung s24',
maxItems: 50,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Python

$pip install apify-client
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("forlex/tokopedia-scraper").call(
run_input={"searchKeyword": "samsung s24", "maxItems": 100}
)
items = client.dataset(run["defaultDatasetId"]).list_items().items
for item in items:
print(item["productName"], item["priceText"])