/fiverr/sellers
curl --request POST \
--url https://api.anysite.io/api/fiverr/sellers \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"seller": "<string>",
"timeout": 300,
"locale": "en",
"currency": "USD"
}
'import requests
url = "https://api.anysite.io/api/fiverr/sellers"
payload = {
"seller": "<string>",
"timeout": 300,
"locale": "en",
"currency": "USD"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({seller: '<string>', timeout: 300, locale: 'en', currency: 'USD'})
};
fetch('https://api.anysite.io/api/fiverr/sellers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/fiverr/sellers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'seller' => '<string>',
'timeout' => 300,
'locale' => 'en',
'currency' => 'USD'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/fiverr/sellers"
payload := strings.NewReader("{\n \"seller\": \"<string>\",\n \"timeout\": 300,\n \"locale\": \"en\",\n \"currency\": \"USD\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/fiverr/sellers")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"seller\": \"<string>\",\n \"timeout\": 300,\n \"locale\": \"en\",\n \"currency\": \"USD\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/fiverr/sellers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"seller\": \"<string>\",\n \"timeout\": 300,\n \"locale\": \"en\",\n \"currency\": \"USD\"\n}"
response = http.request(request)
puts response.read_body[
{
"alias": "<string>",
"@type": "FiverrSeller",
"id": 123,
"display_name": "<string>",
"country_code": "<string>",
"country_name": "<string>",
"timezone": "<string>",
"url": "<string>",
"image": "<string>",
"cover_image": "<string>",
"level": "<string>",
"headline": "<string>",
"rating": 123,
"rating_count": 123,
"review_count": 123,
"communication_rating": 123,
"quality_rating": 123,
"value_rating": 123,
"response_time_hours": 123,
"member_since": 123,
"gig_count": 123,
"portfolio_project_count": 123,
"currency": "<string>",
"hourly_rate": 123,
"agency_alias": "<string>",
"intro_video": "<string>",
"is_pro": true,
"is_verified": true,
"is_highly_responsive": true,
"is_active": true,
"is_on_vacation": true,
"offers_hourly": true,
"languages": [],
"skills": [],
"certifications": [],
"educations": [],
"work_experiences": [],
"social_platforms": [],
"notable_clients": [],
"testimonials": [],
"gig_categories": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/fiverr
/fiverr/sellers
Get Fiverr (fiverr.com) seller (freelancer) profile by username or profile URL
Price: 20 credits
⚠️ Common errors: 412: Seller not found
POST
/
api
/
fiverr
/
sellers
/fiverr/sellers
curl --request POST \
--url https://api.anysite.io/api/fiverr/sellers \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"seller": "<string>",
"timeout": 300,
"locale": "en",
"currency": "USD"
}
'import requests
url = "https://api.anysite.io/api/fiverr/sellers"
payload = {
"seller": "<string>",
"timeout": 300,
"locale": "en",
"currency": "USD"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({seller: '<string>', timeout: 300, locale: 'en', currency: 'USD'})
};
fetch('https://api.anysite.io/api/fiverr/sellers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/fiverr/sellers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'seller' => '<string>',
'timeout' => 300,
'locale' => 'en',
'currency' => 'USD'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/fiverr/sellers"
payload := strings.NewReader("{\n \"seller\": \"<string>\",\n \"timeout\": 300,\n \"locale\": \"en\",\n \"currency\": \"USD\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/fiverr/sellers")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"seller\": \"<string>\",\n \"timeout\": 300,\n \"locale\": \"en\",\n \"currency\": \"USD\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/fiverr/sellers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"seller\": \"<string>\",\n \"timeout\": 300,\n \"locale\": \"en\",\n \"currency\": \"USD\"\n}"
response = http.request(request)
puts response.read_body[
{
"alias": "<string>",
"@type": "FiverrSeller",
"id": 123,
"display_name": "<string>",
"country_code": "<string>",
"country_name": "<string>",
"timezone": "<string>",
"url": "<string>",
"image": "<string>",
"cover_image": "<string>",
"level": "<string>",
"headline": "<string>",
"rating": 123,
"rating_count": 123,
"review_count": 123,
"communication_rating": 123,
"quality_rating": 123,
"value_rating": 123,
"response_time_hours": 123,
"member_since": 123,
"gig_count": 123,
"portfolio_project_count": 123,
"currency": "<string>",
"hourly_rate": 123,
"agency_alias": "<string>",
"intro_video": "<string>",
"is_pro": true,
"is_verified": true,
"is_highly_responsive": true,
"is_active": true,
"is_on_vacation": true,
"offers_hourly": true,
"languages": [],
"skills": [],
"certifications": [],
"educations": [],
"work_experiences": [],
"social_platforms": [],
"notable_clients": [],
"testimonials": [],
"gig_categories": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Minimum string length:
1Pattern:
^(?:https?://[^\s]+|(?:www\.|[a-z]{2}\.)?fiverr\.com/[^\s]+|@?[A-Za-z0-9][A-Za-z0-9_-]*)$Required range:
20 <= x <= 1500Available options:
en, de, es, fr, it, nl, pt Available options:
USD, EUR, GBP, AUD, CAD, ILS, BRL, HKD, SEK, NZD, SGD, CHF, ZAR, CNY, INR, MYR, MXN, PKR, PHP, TWD, THB, TRY, AED Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes