Fiverr Gigs & Seller Scraper
Pricing
from $221.92 / 1,000 fiverr gig listing saveds
Fiverr Gigs & Seller Scraper
Scrape public Fiverr gig search listings with seller cards, prices, ratings, reviews, images, ranking, and source query metadata.
Pricing
from $221.92 / 1,000 fiverr gig listing saveds
Rating
0.0
(0)
Developer
Hanna Nosova
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Scrape public Fiverr search results and export gig listing data with seller cards, prices, ratings, review counts, images, ranking, and source query metadata.
Use this Actor for marketplace research, service-price monitoring, freelancer/vendor discovery, category tracking, and repeatable Fiverr data exports to CSV, JSON, Excel, API, or automation workflows.
What data you get
Fiverr search pages are useful for pricing research, vendor shortlists, and marketplace monitoring, but copying listings by hand is slow and inconsistent. This Actor turns public Fiverr search results into a clean dataset with gig URLs, seller names, prices, ratings, reviews, images, and search-rank context.
What it does
- Search Fiverr by keyword such as
logo design,shopify developer, orwordpress speed optimization. - Process public Fiverr search/category URLs when you already have a filtered Fiverr URL.
- Save one row per unique gig listing with seller-card and pricing fields visible on public search pages.
- Deduplicate by gig URL across multiple keywords or pages.
- Report blocked/challenge pages clearly instead of charging for unusable pages.
Use cases
- Marketplace researchers compare Fiverr categories, starting prices, ratings, and seller levels.
- Agencies and buyers build repeatable shortlists for service niches such as logo design or Shopify development.
- Growth and SEO teams monitor marketplace supply and competitor positioning over time.
- Data teams export public Fiverr listings to CSV, JSON, Excel, API, or downstream workflows.
Ready-to-run examples
- Fiverr logo design gigs — small smoke test for
logo designwithmaxItems: 10. - Fiverr SEO gigs — compare public SEO service listings.
- Fiverr URL sample — scrape a public Fiverr search URL through
startUrls.
Input recipes
- Small smoke test:
queries: ["logo design"],maxItems: 10,maxPagesPerQuery: 1. - Buyer/vendor comparison:
queries: ["shopify developer", "wordpress speed optimization"],maxItems: 100. - Search URL monitoring: paste one public Fiverr search URL in
startUrls, setmaxItems, and schedule repeat runs.
US residential proxy is recommended for Fiverr. During development, the shopify developer query was blocked on generic residential but succeeded with US residential.
Example input
{"queries": ["logo design", "shopify developer"],"maxItems": 25,"maxPagesPerQuery": 1,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US"}}
Example output
{"gigId": "aHR0cHM6Ly93d3cuZml2ZXJy","gigUrl": "https://www.fiverr.com/remonisco/design-a-modern-minimalist-logo","title": "design a modern minimalist logo","sellerName": "remonisco","sellerUrl": "https://www.fiverr.com/remonisco","sellerLevel": "Level 2","priceFrom": 20,"priceCurrency": "$","priceRaw": "From $20","rating": 4.9,"reviewCount": 1200,"deliveryTime": "3 days","imageUrl": "https://fiverr-res.cloudinary.com/...jpg","rank": 1,"sourceQuery": "logo design","sourceUrl": "https://www.fiverr.com/search/gigs?query=logo+design","page": 1,"scrapedAt": "2026-07-17T08:22:51.000Z","diagnostics": { "status": 200, "title": "Logo Design Services - Design Your Own Logo | Fiverr" }}
Input settings
| Setting | JSON key | Description | Default |
|---|---|---|---|
| Search keywords | queries | Fiverr search phrases to scrape. | logo design, shopify developer |
| Search/category URLs | startUrls | Optional public Fiverr search or category URLs. | none |
| Maximum gigs | maxItems | Total unique gig listings to save. | 10 |
| Pages per query | maxPagesPerQuery | Fiverr result pages to visit for each keyword. | 1 |
| Proxy | proxyConfiguration | Apify Proxy settings; US residential recommended. | Residential |
Output fields
| Field | Description |
|---|---|
gigId, gigUrl, title | Stable gig identifier, canonical gig URL, and listing title. |
sellerName, sellerUrl, sellerLevel | Public seller card fields. |
priceFrom, priceCurrency, priceRaw | Parsed starting price plus original price text. |
rating, reviewCount, deliveryTime | Public quality and delivery signals when present. |
imageUrl | Listing thumbnail URL. |
rank, sourceQuery, sourceUrl, page | Search context and page ranking. |
scrapedAt, diagnostics | Run timestamp and page status metadata. |
Pricing
This Actor uses pay-per-event pricing. A small start event is charged once per run, and the primary item event is charged only when a unique Fiverr gig listing is saved.
| Event | Free | Bronze | Silver | Gold | Platinum | Diamond | Charged when |
|---|---|---|---|---|---|---|---|
| Run start | $0.005 | $0.005 | $0.005 | $0.005 | $0.005 | $0.005 | Once when a run starts. |
| Fiverr gig listing saved | $0.42535 | $0.36987 | $0.28850 | $0.22192 | $0.14795 | $0.10356 | Each unique gig listing is saved. |
Tips and limits
- Start with
maxItems: 10to verify output for your Fiverr niche. - Use focused keywords. Very broad searches may produce repeated or sponsored cards.
- Fiverr can show anti-bot challenges. If you receive blocked diagnostics, use US residential proxy and retry with a smaller input.
- This Actor extracts public listing cards only. Gig details, reviews, and full seller profiles are intentionally deferred.
- Do not use this Actor for spam, contact harvesting, or private account data.
API usage
Node.js
import { ApifyClient } from "apify-client";const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor("fetch_cat/fiverr-gigs-seller-scraper").call({queries: ["logo design"],maxItems: 10,proxyConfiguration: { useApifyProxy: true, apifyProxyGroups: ["RESIDENTIAL"], apifyProxyCountry: "US" }});console.log(run.defaultDatasetId);
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("fetch_cat/fiverr-gigs-seller-scraper").call(run_input={"queries": ["logo design"],"maxItems": 10,"proxyConfiguration": {"useApifyProxy": True,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "US",},})print(run["defaultDatasetId"])
cURL
curl -X POST "https://api.apify.com/v2/acts/fetch_cat~fiverr-gigs-seller-scraper/runs?token=YOUR_APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"queries":["logo design"],"maxItems":10}'
MCP and AI agents
Use this Actor through the official Apify MCP Server.
MCP server configuration
{"mcpServers": {"apify": {"url": "https://mcp.apify.com?tools=fetch_cat/fiverr-gigs-seller-scraper"}}}
Claude CLI
$claude mcp add --transport http apify "https://mcp.apify.com?tools=fetch_cat/fiverr-gigs-seller-scraper"
Example prompts
- "Run the Fiverr Gigs & Seller Scraper for logo design and summarize the average starting price."
- "Collect 20 Shopify developer gigs from Fiverr and list sellers with rating and review counts."
- "Compare public Fiverr listings for wordpress speed optimization versus shopify developer."
Related actors
FAQ
Does this scrape private Fiverr data? No. It extracts public listing-card data visible on Fiverr search/category pages without login.
Why should I use a residential proxy? Fiverr can return edge challenges to datacenter traffic. US residential proxy is the safest default validated during development.
Can it scrape gig reviews or full seller profiles? Not in V1. Reviews, packages, and deep seller profile pages are deferred until listing-route reliability is proven.
What happens if Fiverr shows a challenge page? The Actor retries with fresh proxy sessions, records diagnostics, and fails only if every attempt produces a zero-item challenge-only run.
Support
Questions, bugs, or feature requests? Open an issue on the Actor page in Apify Console and include:
- Input JSON: the exact
queries,startUrls, limits, and proxy settings. - Expected output: the Fiverr listings or fields you expected to receive.
- Actual output: dataset item count, missing fields, error message, or diagnostic snippet.
- Reproducible public URL: a Fiverr search/category URL when possible, plus the Apify run ID.