Run Amazon Seller
curl --request POST \
--url https://api.neuralverge.ai/functions/v1/run-amazon-seller \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"seller": "A2L77EE7U53NWQ",
"domain": "amazon.com"
}
'import requests
url = "https://api.neuralverge.ai/functions/v1/run-amazon-seller"
payload = {
"seller": "A2L77EE7U53NWQ",
"domain": "amazon.com"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({seller: 'A2L77EE7U53NWQ', domain: 'amazon.com'})
};
fetch('https://api.neuralverge.ai/functions/v1/run-amazon-seller', 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.neuralverge.ai/functions/v1/run-amazon-seller",
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' => 'A2L77EE7U53NWQ',
'domain' => 'amazon.com'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.neuralverge.ai/functions/v1/run-amazon-seller"
payload := strings.NewReader("{\n \"seller\": \"A2L77EE7U53NWQ\",\n \"domain\": \"amazon.com\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.neuralverge.ai/functions/v1/run-amazon-seller")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"seller\": \"A2L77EE7U53NWQ\",\n \"domain\": \"amazon.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.neuralverge.ai/functions/v1/run-amazon-seller")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"seller\": \"A2L77EE7U53NWQ\",\n \"domain\": \"amazon.com\"\n}"
response = http.request(request)
puts response.read_body{
"session_id": "ffffffff-ffff-ffff-ffff-ffffffffffff",
"kind": "amazon_seller",
"seller": "A2L77EE7U53NWQ",
"domain": "amazon.com",
"human": "# Amazon seller\n\n- **Seller ID:** A2L77EE7U53NWQ\n- **Domain:** amazon.com\n- **Page weight:** 1.10 MB\n- **Name:** Example Seller Co\n- **Rating:** 96% (2130 ratings)\n- **Business name:** Example Seller Co LLC\n- **Business address:** 123 Main St, Seattle, WA\n- **Phone:** +1 555-0100",
"machine": {
"seller": {
"id": "A2L77EE7U53NWQ",
"name": "Example Seller Co",
"rating": 96,
"rating_count": 2130,
"positive_percent": 96,
"about": "Authorized reseller of electronics and accessories.",
"business_name": "Example Seller Co LLC",
"business_address": "123 Main St, Seattle, WA",
"phone": "+1 555-0100",
"privacy_policy": "https://www.amazon.com/gp/help/customer/display.html?nodeId=468496",
"rating_30d": {
"rating": 97,
"rating_count": 84
},
"rating_90d": {
"rating": 96,
"rating_count": 310
},
"rating_365d": {
"rating": 96,
"rating_count": 1240
},
"rating_lifetime": {
"rating": 96,
"rating_count": 2130
}
},
"page_weight_bytes": 1149203
},
"total_points": 5
}Data Sources
Run Amazon Seller
Fetches an Amazon seller profile by seller ID: name, rating, business details, and contact info.
POST
/
functions
/
v1
/
run-amazon-seller
Run Amazon Seller
curl --request POST \
--url https://api.neuralverge.ai/functions/v1/run-amazon-seller \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"seller": "A2L77EE7U53NWQ",
"domain": "amazon.com"
}
'import requests
url = "https://api.neuralverge.ai/functions/v1/run-amazon-seller"
payload = {
"seller": "A2L77EE7U53NWQ",
"domain": "amazon.com"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({seller: 'A2L77EE7U53NWQ', domain: 'amazon.com'})
};
fetch('https://api.neuralverge.ai/functions/v1/run-amazon-seller', 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.neuralverge.ai/functions/v1/run-amazon-seller",
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' => 'A2L77EE7U53NWQ',
'domain' => 'amazon.com'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.neuralverge.ai/functions/v1/run-amazon-seller"
payload := strings.NewReader("{\n \"seller\": \"A2L77EE7U53NWQ\",\n \"domain\": \"amazon.com\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.neuralverge.ai/functions/v1/run-amazon-seller")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"seller\": \"A2L77EE7U53NWQ\",\n \"domain\": \"amazon.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.neuralverge.ai/functions/v1/run-amazon-seller")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"seller\": \"A2L77EE7U53NWQ\",\n \"domain\": \"amazon.com\"\n}"
response = http.request(request)
puts response.read_body{
"session_id": "ffffffff-ffff-ffff-ffff-ffffffffffff",
"kind": "amazon_seller",
"seller": "A2L77EE7U53NWQ",
"domain": "amazon.com",
"human": "# Amazon seller\n\n- **Seller ID:** A2L77EE7U53NWQ\n- **Domain:** amazon.com\n- **Page weight:** 1.10 MB\n- **Name:** Example Seller Co\n- **Rating:** 96% (2130 ratings)\n- **Business name:** Example Seller Co LLC\n- **Business address:** 123 Main St, Seattle, WA\n- **Phone:** +1 555-0100",
"machine": {
"seller": {
"id": "A2L77EE7U53NWQ",
"name": "Example Seller Co",
"rating": 96,
"rating_count": 2130,
"positive_percent": 96,
"about": "Authorized reseller of electronics and accessories.",
"business_name": "Example Seller Co LLC",
"business_address": "123 Main St, Seattle, WA",
"phone": "+1 555-0100",
"privacy_policy": "https://www.amazon.com/gp/help/customer/display.html?nodeId=468496",
"rating_30d": {
"rating": 97,
"rating_count": 84
},
"rating_90d": {
"rating": 96,
"rating_count": 310
},
"rating_365d": {
"rating": 96,
"rating_count": 1240
},
"rating_lifetime": {
"rating": 96,
"rating_count": 2130
}
},
"page_weight_bytes": 1149203
},
"total_points": 5
}