cURL
curl --request POST \
--url https://py-api.hobbo.ai/domain-to-everything-continues/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "https://www.linkedin.com/feed/"
}
'import requests
url = "https://py-api.hobbo.ai/domain-to-everything-continues/reviews"
payload = { "query": "https://www.linkedin.com/feed/" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: 'https://www.linkedin.com/feed/'})
};
fetch('https://py-api.hobbo.ai/domain-to-everything-continues/reviews', 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://py-api.hobbo.ai/domain-to-everything-continues/reviews",
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([
'query' => 'https://www.linkedin.com/feed/'
]),
CURLOPT_HTTPHEADER => [
"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://py-api.hobbo.ai/domain-to-everything-continues/reviews"
payload := strings.NewReader("{\n \"query\": \"https://www.linkedin.com/feed/\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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://py-api.hobbo.ai/domain-to-everything-continues/reviews")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"https://www.linkedin.com/feed/\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://py-api.hobbo.ai/domain-to-everything-continues/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"https://www.linkedin.com/feed/\"\n}"
response = http.request(request)
puts response.read_body{
"extra_information": {
"favicon_icon_url": "<string>",
"logo_url": "<string>",
"title": "<string>",
"description": "<string>",
"theme_color": "<string>"
},
"api_available_platforms": {},
"domain_reviews": {
"favicon_url": "<string>",
"reviews": "<array>"
},
"status": "<string>"
}{
"error": "<string>"
}Generative AI API
Domain to Everything
Extract comprehensive information from a domain including metadata, available review platforms, and domain reviews with SSE response.
POST
/
domain-to-everything-continues
/
reviews
cURL
curl --request POST \
--url https://py-api.hobbo.ai/domain-to-everything-continues/reviews \
--header 'Content-Type: application/json' \
--data '
{
"query": "https://www.linkedin.com/feed/"
}
'import requests
url = "https://py-api.hobbo.ai/domain-to-everything-continues/reviews"
payload = { "query": "https://www.linkedin.com/feed/" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({query: 'https://www.linkedin.com/feed/'})
};
fetch('https://py-api.hobbo.ai/domain-to-everything-continues/reviews', 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://py-api.hobbo.ai/domain-to-everything-continues/reviews",
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([
'query' => 'https://www.linkedin.com/feed/'
]),
CURLOPT_HTTPHEADER => [
"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://py-api.hobbo.ai/domain-to-everything-continues/reviews"
payload := strings.NewReader("{\n \"query\": \"https://www.linkedin.com/feed/\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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://py-api.hobbo.ai/domain-to-everything-continues/reviews")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"https://www.linkedin.com/feed/\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://py-api.hobbo.ai/domain-to-everything-continues/reviews")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"https://www.linkedin.com/feed/\"\n}"
response = http.request(request)
puts response.read_body{
"extra_information": {
"favicon_icon_url": "<string>",
"logo_url": "<string>",
"title": "<string>",
"description": "<string>",
"theme_color": "<string>"
},
"api_available_platforms": {},
"domain_reviews": {
"favicon_url": "<string>",
"reviews": "<array>"
},
"status": "<string>"
}{
"error": "<string>"
}Body
application/json
Domain information extraction parameters
URL of the domain to extract information from
⌘I