# Unit Conversion Get Convert

> Convert a value from one unit to another

- Skill: `gabrielmoreira/unit-conversion-get-convert` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/unit-conversion-get-convert`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/unit-conversion-get-convert/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/unit-conversion-get-convert

---


## Endpoint

**GET https://requiems.xyz/v1/technology/convert**

## Convert Units

Convert a value from one unit to another

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `from` | string | yes | query | Source unit key (e.g. miles, kg, c) |
| `to` | string | yes | query | Target unit key (e.g. km, lb, f) |
| `value` | number | yes | query | Numeric value to convert |

## Response Example

```json
{
  "data": {
    "from": "miles",
    "to": "km",
    "input": 10,
    "result": 16.09344,
    "formula": "miles × 1.609344"
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `from` | string | Source unit key |
| `to` | string | Target unit key |
| `input` | number | The original input value |
| `result` | number | The converted value (rounded to 6 decimal places) |
| `formula` | string | Human-readable conversion formula |

