Retrieve the structured output of a completed extraction
curl --request GET \
--url https://api.trycactus.com/v1/extractions/{extraction_id}/result \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycactus.com/v1/extractions/{extraction_id}/result"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.trycactus.com/v1/extractions/{extraction_id}/result', 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.trycactus.com/v1/extractions/{extraction_id}/result",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api.trycactus.com/v1/extractions/{extraction_id}/result"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.trycactus.com/v1/extractions/{extraction_id}/result")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycactus.com/v1/extractions/{extraction_id}/result")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"extraction_id": "<string>",
"results": [
{
"document_id": "<string>",
"schema_version": "rent_roll.v1",
"data": {
"as_of_date": {
"value": "<unknown>",
"confidence": 0.5,
"source": {
"page": 123,
"sheet": "<string>",
"cell": "<string>",
"bbox": [
123
]
}
},
"headers": [
{
"key": "lease_start",
"label": "Lease start",
"type": "date"
}
],
"units": [
{
"_source": {
"pages": [
123
]
}
}
],
"unit_count": 123,
"facts": [
{
"path": [
"as_of"
],
"value": "<unknown>",
"confidence": 0.5,
"source": {
"page": 123,
"sheet": "<string>",
"cell": "<string>",
"bbox": [
123
]
}
}
]
},
"validation": {
"checks": [
{
"code": "rent_roll_unit_reconciliation",
"message": "<string>"
}
],
"confidence_status": "<string>"
}
}
]
}{
"title": "Document exceeds the size limit",
"status": 422,
"code": "document_over_size_cap",
"request_id": "<string>",
"type": "https://docs.trycactus.com/errors/document_over_size_cap",
"detail": "Files over 500 pages or 100 MB are rejected and not charged.",
"errors": [
{
"field": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"title": "Document exceeds the size limit",
"status": 422,
"code": "document_over_size_cap",
"request_id": "<string>",
"type": "https://docs.trycactus.com/errors/document_over_size_cap",
"detail": "Files over 500 pages or 100 MB are rejected and not charged.",
"errors": [
{
"field": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}Extractions
Retrieve the structured output of a completed extraction
GET
/
v1
/
extractions
/
{extraction_id}
/
result
Retrieve the structured output of a completed extraction
curl --request GET \
--url https://api.trycactus.com/v1/extractions/{extraction_id}/result \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycactus.com/v1/extractions/{extraction_id}/result"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.trycactus.com/v1/extractions/{extraction_id}/result', 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.trycactus.com/v1/extractions/{extraction_id}/result",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api.trycactus.com/v1/extractions/{extraction_id}/result"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.trycactus.com/v1/extractions/{extraction_id}/result")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycactus.com/v1/extractions/{extraction_id}/result")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"extraction_id": "<string>",
"results": [
{
"document_id": "<string>",
"schema_version": "rent_roll.v1",
"data": {
"as_of_date": {
"value": "<unknown>",
"confidence": 0.5,
"source": {
"page": 123,
"sheet": "<string>",
"cell": "<string>",
"bbox": [
123
]
}
},
"headers": [
{
"key": "lease_start",
"label": "Lease start",
"type": "date"
}
],
"units": [
{
"_source": {
"pages": [
123
]
}
}
],
"unit_count": 123,
"facts": [
{
"path": [
"as_of"
],
"value": "<unknown>",
"confidence": 0.5,
"source": {
"page": 123,
"sheet": "<string>",
"cell": "<string>",
"bbox": [
123
]
}
}
]
},
"validation": {
"checks": [
{
"code": "rent_roll_unit_reconciliation",
"message": "<string>"
}
],
"confidence_status": "<string>"
}
}
]
}{
"title": "Document exceeds the size limit",
"status": 422,
"code": "document_over_size_cap",
"request_id": "<string>",
"type": "https://docs.trycactus.com/errors/document_over_size_cap",
"detail": "Files over 500 pages or 100 MB are rejected and not charged.",
"errors": [
{
"field": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}{
"title": "Document exceeds the size limit",
"status": 422,
"code": "document_over_size_cap",
"request_id": "<string>",
"type": "https://docs.trycactus.com/errors/document_over_size_cap",
"detail": "Files over 500 pages or 100 MB are rejected and not charged.",
"errors": [
{
"field": "<string>",
"code": "<string>",
"message": "<string>"
}
]
}⌘I