Number base conversion get base
Skill bobadilla-tech/requiems-api-skills/skills/number-base-conversion-get-base
Convert an integer from one number base to another.From its SKILL.md
npx -y skills add bobadilla-tech/requiems-api-skills --skill number-base-conversion-get-baseAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.3 KB, 340 tokens by cl100k_base, as published. Nobody here has run it
Endpoint
GET https://api.requiems.xyz/v1/technology/base
Convert Base
Convert an integer from one number base to another.
Parameters
| Name | Type | Required | Location | Description |
|---|---|---|---|---|
from | integer | yes | query | Source base (2, 8, 10, or 16) |
to | integer | yes | query | Target base (2, 8, 10, or 16) |
value | string | yes | query | The number as a string. Accepts optional prefixes: 0x (hex), 0b (binary), 0o (octal). |
Response Example
{
"data": {
"input": "255",
"from": 10,
"to": 16,
"result": "ff"
},
"metadata": {
"timestamp": "2026-01-01T00:00:00Z"
}
}
Response Fields
| Field | Type | Description |
|---|---|---|
input | string | The original value as provided in the request |
from | integer | The source base |
to | integer | The target base |
result | string | The converted value in the target base |
Errors
400bad_request — A required parameter is missing, the base is not one of 2/8/10/16, or value is not valid for the given base.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.