Endpoint Playground
Test Crawlora's Fiverr seller 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/seller/<username>" \
-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 |
{
"code": 200,
"msg": "OK",
"data": {
"username": "inshape_studio",
"url": "https://www.fiverr.com/inshape_studio",
"display_name": "InShape Studio",
"one_liner_title": "Modern logo design that grows your brand",
"description": "Professional logo designer with 10 years experience.",
"country": "BD",
"level": "level_two",
"is_verified": true,
"hourly_rate": 25,
"languages": [
"en",
"bn"
],
"joined_at": "2016-01-01T00:00:00Z",
"profile_image": "https://fiverr-res.cloudinary.com/seller.jpg",
"approved_gigs_count": 14,
"gig_ids": [
"24460733",
"24460800"
]
}
}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 seller profile: display name, one-liner title, description, country, seller level, verification status, hourly rate, spoken languages, join date, and the seller's gig ids. Public data sourced from Fiverr's own server-rendered seller profile pages via a real browser-rendering backend.
{
"code": 200,
"msg": "OK",
"data": {
"username": "inshape_studio",
"url": "https://www.fiverr.com/inshape_studio",
"display_name": "InShape Studio",
"one_liner_title": "Modern logo design that grows your brand",
"description": "Professional logo designer with 10 years experience.",
"country": "BD",
"level": "level_two",
"is_verified": true,
"hourly_rate": 25,
"languages": [
"en",
"bn"
],
"joined_at": "2016-01-01T00:00:00Z",
"profile_image": "https://fiverr-res.cloudinary.com/seller.jpg",
"approved_gigs_count": 14,
"gig_ids": [
"24460733",
"24460800"
]
}
}curl "https://api.crawlora.net/api/v1/fiverr/seller/<username>" \
-H "x-api-key: $CRAWLORA_API_KEY"