Endpoint Playground
Test Crawlora's Fiverr gig 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/gig/<username>/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| username (path) | string | Yes | Fiverr seller username, e.g. from a search result's seller_username field | |
| slug (path) | string | Yes | Fiverr gig URL slug, the trailing path segment after the username in a gig URL |
{
"code": 200,
"msg": "OK",
"data": {
"id": "24460733",
"url": "https://www.fiverr.com/inshape_studio/do-modern-minimalist-logo-design-for-your-business",
"title": "I will do modern minimalist logo design for your business",
"description": "I will create a modern, minimalist logo for your brand.",
"category_name": "Graphics & Design",
"sub_category_name": "Logo Design",
"rating": 4.9,
"review_count": 3421,
"orders_in_queue": 12,
"packages": [
{
"tier": "Basic",
"description": "1 logo concept",
"price": 10,
"delivery_days": 3
},
{
"tier": "Standard",
"description": "3 logo concepts",
"price": 25,
"delivery_days": 5
},
{
"tier": "Premium",
"description": "5 logo concepts",
"price": 50,
"delivery_days": 7
}
],
"tags": [
"logo",
"branding"
],
"images": [
"https://fiverr-res.cloudinary.com/gallery1.jpg"
],
"seller": {
"username": "inshape_studio",
"display_name": "InShape Studio",
"country": "BD",
"level": "level_two",
"rating": 4.9,
"review_count": 3421,
"response_time_hours": 1,
"languages": [
"en"
],
"description": "Professional logo designer with 10 years experience.",
"profile_image": "https://fiverr-res.cloudinary.com/seller.jpg"
}
}
}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.
Returns a normalized Fiverr gig detail page: title, description, category, pricing packages (basic/standard/premium tiers with price and delivery time), rating, review count, orders in queue, tags, gallery images, and a seller summary (level, rating, response time, languages). Public data sourced from Fiverr's own server-rendered gig pages via a real browser-rendering backend.
{
"code": 200,
"msg": "OK",
"data": {
"id": "24460733",
"url": "https://www.fiverr.com/inshape_studio/do-modern-minimalist-logo-design-for-your-business",
"title": "I will do modern minimalist logo design for your business",
"description": "I will create a modern, minimalist logo for your brand.",
"category_name": "Graphics & Design",
"sub_category_name": "Logo Design",
"rating": 4.9,
"review_count": 3421,
"orders_in_queue": 12,
"packages": [
{
"tier": "Basic",
"description": "1 logo concept",
"price": 10,
"delivery_days": 3
},
{
"tier": "Standard",
"description": "3 logo concepts",
"price": 25,
"delivery_days": 5
},
{
"tier": "Premium",
"description": "5 logo concepts",
"price": 50,
"delivery_days": 7
}
],
"tags": [
"logo",
"branding"
],
"images": [
"https://fiverr-res.cloudinary.com/gallery1.jpg"
],
"seller": {
"username": "inshape_studio",
"display_name": "InShape Studio",
"country": "BD",
"level": "level_two",
"rating": 4.9,
"review_count": 3421,
"response_time_hours": 1,
"languages": [
"en"
],
"description": "Professional logo designer with 10 years experience.",
"profile_image": "https://fiverr-res.cloudinary.com/seller.jpg"
}
}
}curl "https://api.crawlora.net/api/v1/fiverr/gig/<username>/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"