# \[Developer plan only] ANGLES

Real-time endpoint:

```
https://app.posetracker.com/pose_tracker/tracking?angles=true
```

Upload endpoint:

```
https://app.posetracker.com/pose_tracker/upload_tracking?angles=true
```

* **Type:** `boolean`
* **Default:** `false`
* **Plan:** Developer/Custom/Company only

Angles are computed from the detected pose and emitted as `type: "angles"` messages.

***

### Payload shape (example)

```json
{
  "type": "angles",
  "timestampMs": 1730000000000,
  "frameId": 421,
  "angles": {
    "left_knee_deg": 92.4,
    "right_knee_deg": 95.1,
    "left_hip_deg": 78.0,
    "right_hip_deg": 79.2
  }
}
```

Angle naming depends on the skeleton definition used by the engine and may evolve with V3 improvements.

***

### Error behavior

Blocked plan:

```json
{
  "type": "error",
  "code": "developer_feature_not_allowed",
  "message": "You cannot use developer features on your current plan.",
  "details": { "blocked": ["angles"] }
}
```


---

# Agent Instructions: 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:

```
GET https://posetracker.gitbook.io/posetracker-api/use-posetracker-on-real-time-camera-webcam/query-params-details/developer-plan-only-angles.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
