Free API60 req/minDeveloper Tools
Number Base Converter
Convert a number from one radix to another for debugging and encoding tasks.
By RSM DevOps
Public endpoint
GET
numbase.apiseeker.com/v1/convertAuth: X-SEEKER-Key
Endpoint
Provide value, from, and to query parameters.
Method
GET
Path
/v1/convert
Full URL
https://numbase.apiseeker.com/v1/convertAuthentication
Send X-SEEKER-Key on every request. Free tools still require a valid APISeeker key — no auth bypass.
Parameters
valuequerystringrequiredInput number in fromBase
fromqueryintegerrequiredSource base (2–36)
toqueryintegerrequiredTarget base (2–36)
Request example
cURL
curl -s "https://numbase.apiseeker.com/v1/convert?value=ff&from=16&to=10" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response example
JSON
{
"success": true,
"data": {
"value": "ff",
"from": 16,
"to": 10,
"result": "255"
},
"request_id": "req_example"
}Errors & limits
- 400Invalid or missing parameters
- 401Missing or invalid API key
- 429Rate limit exceeded
Rate limit: 60 req/min
Playground
Live playground
Number Base Converter
Sign in to send live requests. Docs and URL preview stay open. Log in
GETRequest URL
https://numbase.apiseeker.com/v1/convert?value=ff&from=16&to=10Status: —Latency: —
Response
Response will appear here after you send a request.
