Endpoint docs and playground examples are owned by the API’s publisher. APISeeker-operated APIs are maintained by the platform team.
Number Base Converter docs
Convert integers between bases 2–36.
Authentication
API key (header: X-SEEKER-Key)
Send your key on every request. Do not put keys in client-side code or public repos. Rotate keys from the dashboard if a secret is exposed.
X-SEEKER-Key: YOUR_API_KEYRate limits
Default catalog limit: 60 req/min. Plan-specific limits apply after you subscribe. When throttled, expect 429 with a retryable response — back off and retry with jitter.
- Number Base Converter: 60 req/min
Errors
Errors return JSON with a machine-readable code and message. Common platform codes:
- 401 — missing or invalid API key
- 403 — key valid but not entitled for this API or plan
- 404 — resource or path not found
- 429 — rate limit exceeded; retry later
- 5xx — upstream or platform failure; retry with backoff
Endpoint-specific errors are listed under each endpoint below.
Versioning
Current documented version: v1. Prefer pinning the version path shown in examples. Breaking changes ship under a new version; check the changelog for platform updates.
Number Base Converter
Convert integers between bases 2–36.
Parameters
valuequerystringrequiredInput number in fromBase
fromqueryintegerrequiredSource base (2–36)
toqueryintegerrequiredTarget base (2–36)
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| value | query | string | Yes | Input number in fromBase |
| from | query | integer | Yes | Source base (2–36) |
| to | query | integer | Yes | Target base (2–36) |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Example code
curl -s "https://numbase.apiseeker.com/v1/convert" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response example
{
"success": true,
"data": {
"value": "ff",
"from": 16,
"to": 10,
"result": "255"
},
"request_id": "req_example"
}Errors
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
Playground
API Playground
Number Base Converter
numbase.apiseeker.comhttps://numbase.apiseeker.com/v1/convertResponse headers
Log in to run a test and see headers.
Response body
Log in required for live testing.
Generated snippets
curl -s "https://numbase.apiseeker.com/v1/convert" \
-H "X-SEEKER-Key: YOUR_API_KEY"