> For the complete documentation index, see [llms.txt](https://navixy.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://navixy.com/docs/qna/apis/get-relevant-telemetry-in-one-api-call-get_state.md).

# Get relevant telemetry in one API call (get\_state)

## Question

Which API call returns latest position, speed, status, inputs, outputs, and other telemetry?

## Answer

Use:

`/v2/tracker/get_state`

Example:

`https://api.eu.navixy.com/v2/tracker/get_state`

It returns last known data such as:

* GPS location and time
* speed, heading
* connection status
* movement status
* ignition
* GSM signal
* battery
* inputs / outputs

If you need multiple trackers at once, use `get_states`.

Example response (trimmed to the fields that matter most):

```json
{
  "user_time": "2022-08-31 13:47:13",
  "state": {
    "source_id": 545139,
    "gps": {
      "updated": "2022-08-31 13:47:09",
      "signal_level": 100,
      "location": { "lat": 42.82769, "lng": -78.26290833333333 },
      "heading": 45,
      "speed": 0,
      "alt": 0
    },
    "connection_status": "active",
    "movement_status": "parked",
    "movement_status_update": "2022-08-31 13:40:44",
    "ignition": false,
    "ignition_update": "2022-08-31 13:40:44",
    "gsm": {
      "updated": "2022-08-31 13:47:09",
      "signal_level": 100,
      "network_name": "Mobile",
      "roaming": false
    },
    "last_update": "2022-08-31 13:47:09",
    "battery_level": 97,
    "battery_update": "2022-08-31 13:47:09",
    "inputs": [false, false, false],
    "inputs_update": "2022-08-31 13:47:09",
    "outputs": [true, false],
    "outputs_update": "2022-08-31 13:47:09"
  },
  "success": true
}
```

{% hint style="info" %}
`get_state` returns the state for **one tracker**.

If you need multiple trackers, use [`get_states`](https://www.navixy.com/docs/navixy-api/user-api/backend-api/resources/tracking/tracker#get_states).
{% endhint %}

Note: this method works with a tracker ID. If you need the latest data for more than one tracker, use `get_states`.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://navixy.com/docs/qna/apis/get-relevant-telemetry-in-one-api-call-get_state.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
