API CONTROL DESKONLINE
Bring deterministic tools to apps and AI
11DZ Tools API v0.2.0 now open 30 POST tool operationsNo registration or API Key required. Interactive web tools still process locally in the browser by default; input is sent to a remote Worker only when you explicitly call API or Skill.
First choose the correct processing entry
The same set of deterministic capabilities can be used for interactions, code, or AI workflows, but the privacy boundaries differ.
Browser Tools
Input stays in the current browser by default, suitable for sensitive content, temporary conversion, and offline or weak-network scenarios.
Open local toolsREST API
30 stateless POST operations, no API Key required, suitable for servers, scripts, and automation.
View capability index11DZ Tools Skill
Official website side-load package for Codex, Cursor, and Claude Code; reuse the public REST API when calling it.
View installation guideAPI Quick Start
The official Base URL is as follows. Use POST JSON for tool operations; no Authorization header is required.
- Unified response
ok、dataandmeta.requestId - Keep stability when a request fails
error.code - The complete request Schema and examples use OpenAPI as the source of truth
curl --fail-with-body --request POST 'https://api.tools.11dz.cn/v1/json/format' \
--header 'Content-Type: application/json' \
--data '{"input":"{\"name\":\"11DZ\"}","indent":2}'A stable contract does not mean unlimited calls
Public APIs require no key, but input validation, size limits, and public service protection are still enforced.
Before making a remote call, first determine whether the content should leave the device
API and Skill send the request body to a remote Worker. Do not submit private keys, passwords, cookies, session keys, production credentials, or still-valid production JWT. When you need a local privacy boundary, continue using the site’s browser tools.
View Privacy Policy · JWT interface only decodes; it does not verify the signature, issuer, audience, or expiration.