Endpoint docs and playground examples are maintained by the API Seeker platform team.
Numbertest docs
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.
- Numbertest: 60 req/min
Errors
Errors return JSON with a machine-readable code and message. Common platform codes:
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
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.
Numbertest
Parameters
textquerystringrequiredInput text
X-SEEKER-KeyheaderstringrequiredYour API Seeker key
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| text | query | string | Yes | Input text |
| X-SEEKER-Key | header | string | Yes | Your API Seeker key |
Example code
curl -s "https://numbertest.apiseeker.com/v1/generate" \
-H "X-SEEKER-Key: YOUR_API_KEY"Response example
{
"success": true,
"data": {
"ok": true
},
"request_id": "req_example"
}Errors
- 400 — Invalid or missing parameters
- 401 — Missing or invalid API key
- 429 — Rate limit exceeded
Playground
API Playground
Numbertest
numbertest.apiseeker.comhttps://numbertest.apiseeker.com/v1/generateResponse headers
Log in to run a test and see headers.
Response body
Log in required for live testing.
Generated snippets
curl -s "https://numbertest.apiseeker.com/v1/generate" \
-H "X-SEEKER-Key: YOUR_API_KEY"