Discover/Fiverr API
live

Fiverr APIfiverr.com

Search Fiverr gigs by keyword, budget, delivery time, and seller level. Fetch full gig details including package tiers, reviews, and seller profiles via two endpoints.

Endpoint health
verified 2h ago
search_gigs
get_gig_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago

What is the Fiverr API?

The Fiverr API exposes two endpoints — search_gigs and get_gig_details — giving developers structured access to Fiverr's freelance marketplace. search_gigs returns up to 48 gig cards per page including title, seller level, starting price in USD, rating, review count, and thumbnail URL. get_gig_details retrieves a single gig's complete data: all package tiers with pricing and delivery days, seller bio and credentials, FAQ entries, gallery images, and recent reviews.

This call costs5 credits / call— charged only on success
Try it
1-based results page; each page holds up to 48 gigs.
Result ordering of organic cards; auto is the site's relevance ranking.
Free-text search phrase, e.g. one shape: 'mascot logo'.
true restricts results to Fiverr Pro (vetted) sellers.
Maximum starting price in whole USD (inclusive). Omitted = no upper bound. Must be >= min_price when both are given.
Minimum starting price in whole USD (inclusive). Omitted = no lower bound.
Comma-separated list of seller level codes from the SellerLevel enum, e.g. top_rated_seller,level_two_seller. The scraper splits on commas — do NOT pass an array. Omitted = all levels. Values outside the enum are rejected.
Maximum delivery time of the gig's packages. Omitted = any delivery time.
api.parse.bot/scraper/1d7f7367-2e25-4d53-9fc4-8c25b767e901/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1d7f7367-2e25-4d53-9fc4-8c25b767e901/search_gigs?sort=price_asc&query=mascot+logo&pro_only=true' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Searches Fiverr gigs for a free-text query and returns one page of gig cards (up to 48 per page, the site's fixed page size) with title, seller name and level, rating, review count, starting price (USD, the cheapest package), gig URL and thumbnail. Optional filters narrow by starting-price range in whole USD (min_price/max_price), maximum delivery time in days, seller level (comma-separated list) and Pro-only sellers; sort defaults to relevance and, as on the site, orders the organic cards only: promoted (advertised) cards, flagged is_promoted, are placed first by the site regardless of sort. One request per call. Paging is caller-controlled through page (1-based; omitted = first page); total_results and has_more come from the site. Filter combinations that match nothing return an empty gigs list with total_results 0. applied_filters echoes the filters the site acknowledged.

Input
ParamTypeDescription
pageinteger1-based results page; each page holds up to 48 gigs.
sortstringResult ordering of organic cards; auto is the site's relevance ranking.
queryrequiredstringFree-text search phrase, e.g. one shape: 'mascot logo'.
pro_onlybooleantrue restricts results to Fiverr Pro (vetted) sellers.
max_priceintegerMaximum starting price in whole USD (inclusive). Omitted = no upper bound. Must be >= min_price when both are given.
min_priceintegerMinimum starting price in whole USD (inclusive). Omitted = no lower bound.
seller_levelstringComma-separated list of seller level codes from the SellerLevel enum, e.g. top_rated_seller,level_two_seller. The scraper splits on commas — do NOT pass an array. Omitted = all levels. Values outside the enum are rejected.
delivery_timestringMaximum delivery time of the gig's packages. Omitted = any delivery time.
Response
{
  "type": "object",
  "fields": {
    "gigs": "array of gig cards: gig_id (integer), title, gig_url (full URL, accepted by get_gig_details), thumbnail, seller_username, seller_display_name, seller_url, seller_level (SellerLevel code), seller_country (ISO-2), seller_online, is_pro, is_promoted, rating (0-5 or null when unrated), reviews_count, starting_price (number, cheapest package), starting_price_delivery_days, currency (ISO code the prices are in), num_of_packages, offers_consultation",
    "page": "1-based page returned",
    "sort": "sort code in effect",
    "query": "echo of the search phrase",
    "has_more": "true when a further page exists",
    "page_size": "gigs per page (48)",
    "total_results": "total matching gigs reported by the site",
    "applied_filters": "object of filters the site acknowledged (keys gig_price_range, delivery_time, seller_level, pro), empty when none"
  },
  "sample": {
    "data": {
      "gigs": [
        {
          "title": "I will design awesome mascot logo, cartoon, character",
          "gig_id": 133025786,
          "is_pro": false,
          "rating": 4.9,
          "gig_url": "https://www.fiverr.com/thefatboy/design-mascot-logo-for-youtube-twitch-esport-team-and-streamer",
          "currency": "USD",
          "thumbnail": "https://fiverr-res.cloudinary.com/t_main1,q_auto,f_auto/gigs/133025786/original/23838fb49e65469bbbd5e0eb06c30f6d0eb261b6.jpg",
          "seller_url": "https://www.fiverr.com/thefatboy",
          "is_promoted": true,
          "seller_level": "top_rated_seller",
          "reviews_count": 1819,
          "seller_online": false,
          "seller_country": "ID",
          "starting_price": 35,
          "num_of_packages": 3,
          "seller_username": "thefatboy",
          "offers_consultation": false,
          "seller_display_name": "Jane Doe",
          "starting_price_delivery_days": 5
        }
      ],
      "page": 1,
      "sort": "auto",
      "query": "mascot logo",
      "has_more": true,
      "page_size": 48,
      "total_results": 17234,
      "applied_filters": {}
    },
    "status": "success"
  }
}

About the Fiverr API

Search Fiverr Gigs

The search_gigs endpoint accepts a query string (e.g. mascot logo) and returns one page of up to 48 gig cards. Each card includes gig_id, title, gig_url, thumbnail, seller_username, seller_level, rating, review_count, and starting_price_usd (the cheapest package tier). Pagination is controlled by the page parameter; has_more indicates whether additional pages exist and total_results gives the site-reported match count. The sort parameter controls ordering — the default is the site's own relevance ranking.

Filtering Results

Four optional filters narrow search_gigs results. min_price and max_price bound the starting price in whole USD — both are inclusive and min_price must not exceed max_price when both are supplied. delivery_time caps the maximum delivery duration across a gig's packages. seller_level accepts a comma-separated list of SellerLevel codes such as top_rated_seller or level_two_seller. pro_only restricts results to Fiverr Pro (vetted) sellers only. The applied_filters field in the response confirms which filters the site acknowledged.

Gig Detail Data

get_gig_details takes a gig_url — the value emitted by search_gigs in the form https://www.fiverr.com/<seller>/<gig-slug> — and returns the full gig record. Package tiers carry price (USD), delivery_days, revisions (integer or 'unlimited'), and included features. The seller object includes username, display_name, seller_level, country, bio, one_liner, rating, and ratings_count. Additional fields include gallery image URLs, tags, faq question-answer pairs, is_pro flag, and status.

Reliability & maintenanceVerified

The Fiverr API is a managed, monitored endpoint for fiverr.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fiverr.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official fiverr.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a freelancer comparison tool that surfaces gig starting prices, delivery times, and seller levels side by side using search_gigs filter parameters.
  • Monitor price changes for specific logo or mascot design gigs over time by polling get_gig_details on a set of tracked gig_urls.
  • Aggregate Fiverr Pro seller profiles by querying search_gigs with pro_only=true and extracting seller country, bio, and ratings_count.
  • Generate a ranked shortlist of gigs within a client's budget by combining max_price and seller_level filters in search_gigs.
  • Extract FAQ content and package inclusions from gig detail pages to feed a structured comparison database for a procurement workflow.
  • Analyze review counts and average ratings across a category by paginating search_gigs results and recording the rating and review_count fields.
  • Populate a curated directory of top-rated Fiverr sellers by filtering for top_rated_seller level and extracting seller display_name, country, and one_liner from get_gig_details.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Fiverr provide an official public developer API?+
Fiverr does not offer a publicly available developer API for gig search or gig detail data. Their official API program, described at https://developers.fiverr.com, is limited to approved affiliate and business partners and does not expose general gig data to third-party developers.
What does get_gig_details return beyond what search_gigs provides?+
search_gigs returns summary cards: title, starting price, thumbnail, seller username and level, rating, and review count. get_gig_details adds the full package breakdown (price per tier, delivery_days, revisions, inclusions), the seller's bio, one_liner, country, and ratings_count, plus gallery image URLs, gig tags, FAQ entries, is_pro flag, and gig status — data that does not appear in search result cards.
How does pagination work in search_gigs?+
Each call returns at most 48 gigs — the fixed page size the site uses. The page parameter is 1-based. The response includes has_more (true if another page exists) and total_results (the site-reported total). To retrieve all results, increment page until has_more is false.
Are seller order statistics or inbox messaging data available?+
Not currently. The API covers gig search results and per-gig detail pages, including seller profile fields like bio, rating, and country. Order statistics, response rates, and messaging are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting seller profile pages where additional metrics appear.
Can I retrieve gigs from categories other than logo and mascot design?+
Yes — the query parameter in search_gigs is free-text and not restricted to any category. You can search for any service offered on Fiverr by passing a relevant phrase. The API returns results matching the query regardless of Fiverr's internal category structure, though the response does not include a category field on each gig card. You can fork the API on Parse and revise it to pass category-specific path parameters if you need category-scoped browsing.
Page content last updated . Spec covers 2 endpoints from fiverr.com.
Related APIs in MarketplaceSee all →
gigsalad.com API
Search for entertainers, musicians, and event services by category and location to find the perfect performer for your party or event, complete with ratings, pricing, and direct contact information. View detailed entertainer profiles to compare options and book your entertainment.
peopleperhour.com API
Browse thousands of freelance job postings on PeoplePerHour by category and keyword, then dive into detailed information about specific opportunities that match your skills. Search and sort through listings to quickly find your next project without leaving one platform.
upwork.com API
Access comprehensive details about Upwork job postings, including descriptions, budgets, required skills, client information, and engagement metrics to help you find and evaluate opportunities. Monitor job activity and client profiles to make informed decisions about which projects to pursue.
serviceseeking.com.au API
Search and browse job postings and local service providers across Australia on ServiceSeeking.com.au. View detailed business profiles, ratings, pricing, and explore hundreds of service categories — from tradespeople to home services and beyond.
g2.com API
Search G2.com to discover software products, compare pricing and categories, and read customer reviews all in one place. Get detailed product overviews and ratings to make informed decisions about business software.
freelancer.de API
Search and discover freelancers on freelancer.de by their skills and expertise, then view detailed profiles with ratings, experience metrics, and portfolio information. Find the perfect freelancer for your project by browsing skill sets and comparing professional backgrounds all in one place.
g2a.com API
Search for game keys and get real-time pricing, seller ratings, and detailed product information from G2A's marketplace. Browse available categories and find the best deals on digital game licenses from verified sellers.
filmfreeway.com API
Search and discover film festivals worldwide with detailed information including deadlines, submission categories, fees, rules, and organizer contacts. Access comprehensive festival profiles, photos, and grant opportunities listed on FilmFreeway.