# Fiverr Profile Info ## Overview | Property | Value | |----------|-------| | **Status** | active | | **Method** | `GET` | | **Endpoint** | `/v2/fiverr/profile/info` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/fiverr-profile-info | ## Description Extract complete public profile data from any Fiverr seller, including gigs, ratings, reviews, skills, portfolio, and consultation pricing. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/fiverr/profile/info' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Fetch profile for likaalavidze ```json { "user": { "id": "84160294", "name": "likaalavidze", "address": { "country_code": "IT", "country_name": "Italy" }, "profile": { "display_name": "Lika And Elias" }, "joined_at": 1581077239, "languages": [ { "code": "EN", "level": "FLUENT" }, { "code": "DE", "level": "FLUENT" }, { "code": "IT", "level": "FLUENT" } ], "profile_image_url": "https://fiverr-res.cloudinary.com/image/upload/f_auto,q_auto,t_profile_original/v1/attachments/profile/photo/0aef438b1052e9bc098af188eb25c375-1721832079893/0308ed0e-0093-48ec-97af-4c989cf5d30a.jpg", "is_activation_completed": true }, "is_pro": true, "rating": { "count": 113, "score": 5 }, "gigs_data": [ { "title": "shoot studio and lifestyle product photography for website, instagram and amazon", "gig_id": 149055883, "is_pro": true, "status": "APPROVED", "price_i": 500, "seller_level": "top_rated_seller", "seller_rating": { "count": 113, "score": 4.990741 } } ], "is_active": true, "description": "Hi, here are Lika & Elias. We run a creative studio with focus on commercial Product Photography and Video for Advertising and Brand Storytelling.", "hourly_rate": { "price_in_cents": 25000 }, "seller_level": "LEVEL_TRS", "response_time": { "in_hours": 3 }, "is_on_vacation": false, "one_liner_title": "Commercial Product Photography and Video", "achievement_level": "TOP_RATED_SELLER", "approved_gigs_count": 3 } ``` ## Documentation ## Overview The Fiverr Profile Info endpoint extracts complete public profile data from any Fiverr seller, including gigs, ratings, reviews, portfolio, and consultation pricing. ## Quickstart ``` GET https://api.piloterr.com/v2/fiverr/profile/info?query=https://www.fiverr.com/likaalavidze ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Full Fiverr profile URL | ## Response fields | Field | Type | Description | |---|---|---| | `user.name` | string | Seller's username | | `is_pro` | boolean | Pro status | | `rating.score` | number | Average rating out of 5 | | `seller_level` | string | Seller level | | `gigs_data` | array | All active gigs | | `portfolios` | object | Portfolio projects | | `response_time.in_hours` | number | Response time in hours | ## Notes - Only public seller profiles are supported. - `seller_level` values: `LEVEL_ONE`, `LEVEL_TWO`, `LEVEL_TRS`, `PRO`. ## Main use cases - Vet Fiverr freelancers before hiring by analyzing ratings and portfolio - Build freelancer discovery tools surfacing top-rated Fiverr sellers - Monitor seller profiles for gig pricing and availability changes - Enrich freelancer CRM systems with structured Fiverr profile data