TrackerHub
  1. Position
TrackerHub
  • Docs
    • 01. Project Overview
    • 02. Authentication
    • 03. Error Handling
    • 04. Input Operations
    • 05. GPS Position Workflow
  • API
    • Device Type
      • Device Type
    • Tracker
      • Tracker
      • Tracker
      • Tracker
      • Tracker
    • Device
      • Create Device
      • List Device
      • Device
      • Device
      • Device
    • Position
      • Position
        GET
      • Position
        PATCH
      • Position
        DELETE
      • Create Position
        POST
      • Position :vendor
        POST
      • latest-position
        GET
      • latest-positions
        POST
      • latest-positions :deviceId
        GET
    • Configuration
      • Config
      • Config
      • Config
      • Config
    • Healthcheck
      GET
  1. Position

Position

Production reader
https://api.exati.com.br/tracking/read
Production reader
https://api.exati.com.br/tracking/read
GET
/position
This method is responsible for reading positions, returning all related positions.

Request

Body Params application/json

Example
{}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.exati.com.br/tracking/read/position' \
--header 'Content-Type: application/json' \
--data-raw '{}'

Responses

🟢200OK
application/json
Example of a Position list response
Body

Example
[
    {
        "idPosition": 77096,
        "createdAt": "2024-12-31T21:45:00.905Z",
        "idDevice": 2,
        "idInstance": 123,
        "location": {
            "type": "Point",
            "coordinates": [
                -73.94,
                40.67
            ]
        },
        "velocity": "22.85",
        "odometer": null,
        "direction": null,
        "altitude": null,
        "rpm": null,
        "fuelLevel": null,
        "engineTemperature": null,
        "distanceDelta": "0.00",
        "batteryVoltage": null,
        "mobileSignalStrength": null,
        "gpsAccuracy": null,
        "engineStatus": true
    }
]
Modified at 2025-02-25 19:51:15
Previous
Device
Next
Position