Endpoint Playground
Test Crawlora's Fiverr search API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/fiverr/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | Free-text gig search keyword | |
| page | integer | No | 1-based result page. Defaults to 1. |
{
"code": 200,
"msg": "OK",
"data": {
"query": "logo design",
"page": 1,
"gigs": [
{
"id": "24460733",
"title": "do modern minimalist logo design for your business",
"url": "https://www.fiverr.com/inshape_studio/do-modern-minimalist-logo-design-for-your-business",
"seller_username": "inshape_studio",
"seller_country": "Bangladesh",
"seller_level": "level_two_seller",
"rating": 4.9,
"review_count": 3421,
"starting_price": 10,
"image": "https://fiverr-res.cloudinary.com/gig.jpg",
"category_id": 2,
"sub_category_id": 65
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches Fiverr's public gig listings by free-text keyword, returning normalized gig summaries (title, seller username, seller level, rating, review count, starting price, category, thumbnail image). Public data sourced from Fiverr's own server-rendered search pages via a real browser-rendering backend.
{
"code": 200,
"msg": "OK",
"data": {
"query": "logo design",
"page": 1,
"gigs": [
{
"id": "24460733",
"title": "do modern minimalist logo design for your business",
"url": "https://www.fiverr.com/inshape_studio/do-modern-minimalist-logo-design-for-your-business",
"seller_username": "inshape_studio",
"seller_country": "Bangladesh",
"seller_level": "level_two_seller",
"rating": 4.9,
"review_count": 3421,
"starting_price": 10,
"image": "https://fiverr-res.cloudinary.com/gig.jpg",
"category_id": 2,
"sub_category_id": 65
}
]
}
}curl "https://api.crawlora.net/api/v1/fiverr/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"