cURL
curl --request POST \
--url https://py-api.hobbo.ai/features/image-enhancement \
--header 'Content-Type: application/json' \
--data '
{
"image_url": "<string>",
"image_id": "<string>"
}
'import requests
url = "https://py-api.hobbo.ai/features/image-enhancement"
payload = {
"image_url": "<string>",
"image_id": "<string>"
}
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({image_url: '<string>', image_id: '<string>'})
};
fetch('https://py-api.hobbo.ai/features/image-enhancement', 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/features/image-enhancement",
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([
'image_url' => '<string>',
'image_id' => '<string>'
]),
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/features/image-enhancement"
payload := strings.NewReader("{\n \"image_url\": \"<string>\",\n \"image_id\": \"<string>\"\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/features/image-enhancement")
.header("Content-Type", "application/json")
.body("{\n \"image_url\": \"<string>\",\n \"image_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://py-api.hobbo.ai/features/image-enhancement")
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 \"image_url\": \"<string>\",\n \"image_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"enhanced_image_bytes": "<string>"
}{
"error": "<string>"
}{
"error": "Image enhancement request timed out. Please try again with a smaller image or check your connection."
}Generative AI API
Image Enhancement
Transform low-quality images into high-resolution, professional-quality images using AI. Enhances image clarity, sharpness, and detail while preserving the original subject’s identity and characteristics.
POST
/
features
/
image-enhancement
cURL
curl --request POST \
--url https://py-api.hobbo.ai/features/image-enhancement \
--header 'Content-Type: application/json' \
--data '
{
"image_url": "<string>",
"image_id": "<string>"
}
'import requests
url = "https://py-api.hobbo.ai/features/image-enhancement"
payload = {
"image_url": "<string>",
"image_id": "<string>"
}
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({image_url: '<string>', image_id: '<string>'})
};
fetch('https://py-api.hobbo.ai/features/image-enhancement', 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/features/image-enhancement",
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([
'image_url' => '<string>',
'image_id' => '<string>'
]),
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/features/image-enhancement"
payload := strings.NewReader("{\n \"image_url\": \"<string>\",\n \"image_id\": \"<string>\"\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/features/image-enhancement")
.header("Content-Type", "application/json")
.body("{\n \"image_url\": \"<string>\",\n \"image_id\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://py-api.hobbo.ai/features/image-enhancement")
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 \"image_url\": \"<string>\",\n \"image_id\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"enhanced_image_bytes": "<string>"
}{
"error": "<string>"
}{
"error": "Image enhancement request timed out. Please try again with a smaller image or check your connection."
}Body
application/json
Image enhancement parameters
Response
Image enhanced successfully
Base64-encoded enhanced image in PNG format. The image has been upscaled to high resolution (minimum 1536px on shortest side) with improved clarity, sharpness, and detail.
⌘I