Documents

fiverr-research

Try it

Researches Fiverr gigs and sellers via the Crawlora API — search gigs by keyword, pull a gig's full detail (packages, pricing tiers, rating, seller summary), and look up a seller's profile — returning clean JSON. Use when the user wants to find freelance gigs, compare gig pricing/packages, or vet a Fiverr seller.

What it does

Researches Fiverr gigs and sellers via the Crawlora API — search gigs by keyword, pull a gig's full detail (packages, pricing tiers, rating, seller summary), and look up a seller's profile — returning clean JSON. Use when the user wants to find freelance gigs, compare gig pricing/packages, or vet a Fiverr seller.

The skill document

Fiverr research

Search Fiverr gigs, pull a gig's full pricing/package/rating detail, and look up a seller's profile — all as normalized JSON from the Crawlora API, no scraping Fiverr pages by hand.

When to use this skill

  • "Find Fiverr gigs for ." — keyword gig search.
  • "Compare pricing/packages for these gigs." — pull full gig detail for each.
  • "Who is this Fiverr seller? Are they legit?" — seller profile lookup.
  • "What else does this seller offer?" — seller profile's gig list, then gig detail on the ones that matter.
  • "What's the going rate for on Fiverr?" — search + collect starting prices across results.

Setup (one-time)

  • Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
  • export CRAWLORA_API_KEY=sk_your_key_here
  • All requests: x-api-key: $CRAWLORA_API_KEY against https://api.crawlora.net/api/v1. Missing/invalid key → 401.

How it works

  1. Search/fiverr/search takes a free-text keyword (q) and returns normalized gig summaries: title, seller username, seller level, rating, review count, starting price, category, thumbnail. Paginate with page.
  2. Gig detail — take a result's seller username and gig slug and call /fiverr/gig/{username}/{slug} for the full page: description, pricing packages (basic/standard/premium with price and delivery time), rating, review count, orders in queue, tags, gallery images, and a seller summary (level, rating, response time, languages).
  3. Seller profile/fiverr/seller/{username} returns the seller's display name, one-liner title, description, country, seller level, verification status, hourly rate, spoken languages, join date, and the seller's gig ids — useful for due diligence or listing everything a seller offers.

Full endpoint list, methods, and params: reference/endpoints.md.

Calling the API

# Search gigs:
scripts/crawlora.sh /fiverr/search q="logo design" | jq '.'

# Pull one gig's full detail (username + slug from a search result):
scripts/crawlora.sh /fiverr/gig/johndoe/i-will-design-a-modern-logo | jq '.'

# Look up the seller behind a gig:
scripts/crawlora.sh /fiverr/seller/johndoe | jq '.'

Raw curl fallback:

curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
  "https://api.crawlora.net/api/v1/fiverr/search?q=logo+design" | jq '.'

Endpoint reference

See reference/endpoints.md for every Fiverr endpoint this skill uses.

Examples

  • Gig comparison: /fiverr/search for a service, then /fiverr/gig/{username}/{slug} on the top results to compare package pricing, delivery time, and rating side by side before recommending one.
  • Seller due diligence: /fiverr/seller/{username} to check seller level, verification status, join date, and languages, then /fiverr/gig/{username}/{slug} on their listed gigs to see review counts and orders in queue.

Notes & limits

  • Credits / pay-on-success: billed only on 2xx; free tier 2,000 credits/mo. Key at https://crawlora.net.
  • Public data only — public gig/seller pages; respect Fiverr's terms.
  • Security: key lives in CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.
  • Gig detail needs both username and slug — the trailing path segment after the username in a gig URL, not just a gig ID; get both from a /fiverr/search result (seller_username field) rather than guessing.
  • Results are paginated on /fiverr/search — pass page to walk the full list.

Related skills

Researches Upwork job postings and freelancer profiles via the Crawlora API — search Upwork's public job listings by keyword, pull full detail on a specific job posting, or look up a freelancer's profile (rate, Job Success Score, ratings, feedback) — returning clean JSON. Use when the user wants to search Upwork jobs, read a specific Upwork job posting, or research an Upwork freelancer.

1 installs

Researches job postings, hiring signals, and freelance gigs via the Crawlora API — Indeed, Google/Amazon/Apple/Meta/Tesla careers sites, any company's ATS board (Greenhouse, Lever, Workday, SmartRecruiters, Ashby, and more), plus Upwork and Fiverr — returning clean JSON. Use when the user wants to search job postings, see what a specific company is hiring for, aggregate hiring signals for a company, or research freelance gigs and sellers.

1 installs

Researches secondhand, resale, and handmade marketplaces via the Crawlora API — Poshmark, Etsy, Vinted, StockX, Mercari, Depop, and Whatnot — returning clean JSON. Use when the user wants to find or compare listings, check a seller/shop, look up sneaker/streetwear resale prices, or research handmade/vintage goods.

1 installs

Researches eBay listings, items, and sellers using the Crawlora API, returning clean JSON. Use when the user asks to search eBay, look up an item's details, or vet a seller's reputation and shop listings — instead of scraping eBay pages.

1 installs

Automates Fiverr gig lifecycle — creates gigs, sends buyer offers/proposals, manages inbox, and collects reviews. No Fiverr API needed — uses browser automat...

35 installs

Researches products, prices, sellers, and reviews across 28 major online marketplaces and big-box/specialty retailers (Amazon, eBay, Shopify stores, Shop.app, Target, Costco, Walmart, Nike, Zara, Adidas, Best Buy, Home Depot, Sephora, SHEIN, IKEA, Chewy, and more) using the Crawlora API, returning clean JSON. Use when the user asks to find a product, compare prices or sellers, track listings, or pull marketplace/retailer reviews — instead of scraping store pages.

1 installs