Skip to main content
GET
/
pois
List points of interest
curl --request GET \
  --url https://app.unitedlogistics.com.do/api/v1/pois \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://app.unitedlogistics.com.do/api/v1/pois"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://app.unitedlogistics.com.do/api/v1/pois', 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.unitedlogistics.com.do/api/v1/pois",
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.unitedlogistics.com.do/api/v1/pois"

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.unitedlogistics.com.do/api/v1/pois")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.unitedlogistics.com.do/api/v1/pois")

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
{
  "data": [
    {
      "id": 481,
      "org_id": "d87f7281-ea19-45cd-b6fd-d8eb9e310da1",
      "fleet_id": 1029,
      "name": "Cliente Altice – Bávaro",
      "description": "Punto de entrega cliente Altice zona este",
      "latitude": 18.6792,
      "longitude": -68.4014,
      "image_url": null,
      "geometry_type": "circle",
      "geofence_radius_meters": 250,
      "polygon_coordinates": null,
      "tags": [
        "cliente",
        "distribución-este"
      ],
      "created_at": "2025-09-15T13:00:00.000Z",
      "updated_at": "2026-04-22T18:45:11.221Z"
    },
    {
      "id": 612,
      "org_id": "d87f7281-ea19-45cd-b6fd-d8eb9e310da1",
      "fleet_id": 1029,
      "name": "Patio operativo Santo Domingo",
      "description": null,
      "latitude": 18.5006,
      "longitude": -69.9298,
      "image_url": null,
      "geometry_type": "polygon",
      "geofence_radius_meters": null,
      "polygon_coordinates": [
        [
          18.5012,
          -69.9305
        ],
        [
          18.5012,
          -69.929
        ],
        [
          18.5,
          -69.929
        ],
        [
          18.5,
          -69.9305
        ]
      ],
      "tags": [
        "patio",
        "operaciones"
      ],
      "created_at": "2026-01-08T09:14:22.000Z",
      "updated_at": "2026-01-08T09:14:22.000Z"
    }
  ],
  "pagination": {
    "next_cursor": "eyJpZCI6NjEyfQ",
    "has_more": true
  }
}
{
"error": {
"code": "unauthorized",
"message": "API key missing or invalid."
}
}
{
"error": {
"code": "too_many_requests",
"message": "Rate limit exceeded."
}
}

Authorizations

Authorization
string
header
required

Authorization: Bearer ulk__. Cree la clave en Configuración → API.

Query Parameters

limit
string

Page size, 1-200. Defaults to 50.

Pattern: ^\d+$
cursor
string

Opaque cursor returned by a previous call's pagination.next_cursor.

fleet_id
string

Filter by fleet (provider account) id.

Pattern: ^\d+$

Response

OK

data
object[]
required
pagination
object
required