Retrieve an extraction job (poll for status)
curl --request GET \
--url https://api.trycactus.com/v1/extractions/{extraction_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycactus.com/v1/extractions/{extraction_id}"
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}', 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}",
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}"
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}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycactus.com/v1/extractions/{extraction_id}")
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{
"id": "ext_01J9ZJYA",
"object": "<string>",
"documents": [
{
"document_id": "<string>",
"schema_version": "rent_roll.v1",
"billed": {
"rate_code": "rent_roll",
"units": 1,
"amount_usd": "12.00"
},
"error": {
"code": "<string>",
"message": "<string>"
}
}
],
"sandbox": true,
"created_at": "2023-11-07T05:31:56Z",
"billed_total_usd": "12.00",
"completed_at": "2023-11-07T05:31:56Z",
"result_url": "<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 an extraction job (poll for status)
GET
/
v1
/
extractions
/
{extraction_id}
Retrieve an extraction job (poll for status)
curl --request GET \
--url https://api.trycactus.com/v1/extractions/{extraction_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.trycactus.com/v1/extractions/{extraction_id}"
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}', 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}",
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}"
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}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trycactus.com/v1/extractions/{extraction_id}")
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{
"id": "ext_01J9ZJYA",
"object": "<string>",
"documents": [
{
"document_id": "<string>",
"schema_version": "rent_roll.v1",
"billed": {
"rate_code": "rent_roll",
"units": 1,
"amount_usd": "12.00"
},
"error": {
"code": "<string>",
"message": "<string>"
}
}
],
"sandbox": true,
"created_at": "2023-11-07T05:31:56Z",
"billed_total_usd": "12.00",
"completed_at": "2023-11-07T05:31:56Z",
"result_url": "<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>"
}
]
}Authorizations
Partner API key issued by Cactus.
Path Parameters
Response
Current job state; includes billing and, when complete, a pointer to the result.
Example:
"ext_01J9ZJYA"
Allowed value:
"extraction"Available options:
processing, completed, failed Show child attributes
Show child attributes
Example:
"12.00"
Convenience link to /v1/extractions/{id}/result; present when completed.
⌘I