curl --request GET \
--url https://app.polygon-one.com/api/plots \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.polygon-one.com/api/plots"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.polygon-one.com/api/plots', 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://app.polygon-one.com/api/plots",
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://app.polygon-one.com/api/plots"
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://app.polygon-one.com/api/plots")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.polygon-one.com/api/plots")
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": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdByUserId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"country": "<string>",
"size": 123,
"requiresAreaPlausibilityReview": true,
"species": [
{
"commonName": "<string>",
"scientificName": "<string>"
}
],
"commodityGroup": "cattle",
"producerName": "<string>",
"productionDateFrom": "2023-11-07T05:31:56Z",
"productionDateTo": "2023-11-07T05:31:56Z",
"analysisStatus": "pending",
"deforestationRiskResult": 0,
"forestPercentage": 123,
"isDegraded": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]{
"error": "<string>",
"details": "<unknown>"
}{
"error": "<string>",
"details": "<unknown>"
}{
"error": "<string>",
"details": "<unknown>"
}{
"error": "<string>",
"details": "<unknown>"
}Parzellen auflisten
Retrieve one page of your company’s plots (EUDR production plots), ordered by id. Requires plots:read.
The list rows carry no geometry (geojson), no supplierArticleIds and no analysis payload or pixel data — read a single plot with GET /api/plots/{id} for geometry and links. Deleted plots are never listed.
The response is bounded: limit defaults to 100 and may be at most 1000. Page with offset until a page returns fewer rows than limit. Plots created or deleted while you page can shift the offsets.
curl --request GET \
--url https://app.polygon-one.com/api/plots \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.polygon-one.com/api/plots"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.polygon-one.com/api/plots', 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://app.polygon-one.com/api/plots",
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://app.polygon-one.com/api/plots"
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://app.polygon-one.com/api/plots")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.polygon-one.com/api/plots")
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": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdByUserId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"country": "<string>",
"size": 123,
"requiresAreaPlausibilityReview": true,
"species": [
{
"commonName": "<string>",
"scientificName": "<string>"
}
],
"commodityGroup": "cattle",
"producerName": "<string>",
"productionDateFrom": "2023-11-07T05:31:56Z",
"productionDateTo": "2023-11-07T05:31:56Z",
"analysisStatus": "pending",
"deforestationRiskResult": 0,
"forestPercentage": 123,
"isDegraded": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]{
"error": "<string>",
"details": "<unknown>"
}{
"error": "<string>",
"details": "<unknown>"
}{
"error": "<string>",
"details": "<unknown>"
}{
"error": "<string>",
"details": "<unknown>"
}Autorisierungen
API key generated in Settings > API Keys. Include as Authorization: Bearer <key>.
Abfrageparameter
Maximum number of plots to return. Default 100, maximum 1000 — a larger value is rejected with 400.
1 <= x <= 1000Number of plots to skip for pagination.
x >= 0Antwort
List of plots
Country of production (ISO 3166-1 alpha-2, e.g. BR).
Area in hectares. 0 when no size is stored.
The declared size and the geometry do not fit together and need a manual review.
Show child attributes
Show child attributes
EUDR-regulated commodity groups. non_relevant = article is not covered by EUDR.
cattle, cocoa, coffee, oil_palm, rubber, soya, wood, non_relevant State of the geospatial deforestation analysis. A new plot starts at pending; the analysis runs asynchronously.
pending, in_progress, completed, failed, exempt, skipped Analysis result: 0 = low, 1 = high, 2 = moderate risk. null while no result is available.
0, 1, 2, null