Check Bulk Enhance Job Status
curl --request GET \
--url https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}import requests
url = "https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}', 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://data-api.sovfixer.com/api/v1/bulk_enhance/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"request": {
"completed_at": "2023-11-07T05:31:56Z",
"num_canceled": 123,
"num_completed": 123,
"num_problems": 123,
"num_requested": 123,
"progress_started_at": "2023-11-07T05:31:56Z",
"requested_at": "2023-11-07T05:31:56Z",
"status": "PENDING"
},
"result": {
"message": "<string>",
"outputs": {
"description": "<string>",
"filename": "<string>",
"url": "<string>"
},
"sources": {
"avg_fetch_duration": 123,
"max_fetch_duration": 123,
"min_fetch_duration": 123,
"num_fails": 123,
"num_fetched": 123,
"num_successes": 123,
"source": "PG",
"total_fetch_duration": 123
},
"status": "SUCCESS",
"total_processing_time": 123
}
}{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"message": "<string>"
}Bulk Enhance
Check Bulk Enhance Job Status
Check the status of a data request. Returns status, and, when complete, provides links to the requested data.
GET
/
api
/
v1
/
bulk_enhance
/
{id}
Check Bulk Enhance Job Status
curl --request GET \
--url https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}import requests
url = "https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}', 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://data-api.sovfixer.com/api/v1/bulk_enhance/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://data-api.sovfixer.com/api/v1/bulk_enhance/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"request": {
"completed_at": "2023-11-07T05:31:56Z",
"num_canceled": 123,
"num_completed": 123,
"num_problems": 123,
"num_requested": 123,
"progress_started_at": "2023-11-07T05:31:56Z",
"requested_at": "2023-11-07T05:31:56Z",
"status": "PENDING"
},
"result": {
"message": "<string>",
"outputs": {
"description": "<string>",
"filename": "<string>",
"url": "<string>"
},
"sources": {
"avg_fetch_duration": 123,
"max_fetch_duration": 123,
"min_fetch_duration": 123,
"num_fails": 123,
"num_fetched": 123,
"num_successes": 123,
"source": "PG",
"total_fetch_duration": 123
},
"status": "SUCCESS",
"total_processing_time": 123
}
}{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"message": "<string>"
}⌘I