Install
openclaw skills install @tonywangcn/fiverr-researchResearches 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.
openclaw skills install @tonywangcn/fiverr-researchSearch 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.
export CRAWLORA_API_KEY=sk_your_key_herex-api-key: $CRAWLORA_API_KEY against
https://api.crawlora.net/api/v1. Missing/invalid key → 401./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./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)./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.
# 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 '.'
See reference/endpoints.md for every Fiverr
endpoint this skill uses.
/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./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.2xx; free tier 2,000 credits/mo.
Key at https://crawlora.net.CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.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./fiverr/search — pass page to walk the full list.