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.

01 / ROUTING

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.

Developer Integration

REST API

30 stateless POST operations, no API Key required, suitable for servers, scripts, and automation.

View capability index
AI Access

11DZ Tools Skill

Official website side-load package for Codex, Cursor, and Claude Code; reuse the public REST API when calling it.

View installation guide
02 / REQUEST

API Quick Start

The official Base URL is as follows. Use POST JSON for tool operations; no Authorization header is required.

  • Unified response okdata and meta.requestId
  • Keep stability when a request fails error.code
  • The complete request Schema and examples use OpenAPI as the source of truth
POST /v1/json/format
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}'
03 / CONTRACT

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.

30Current POST operation
256 KiBJSON request body limit
128JSON maximum nesting level
1 MiBJSON Expected Output Limit
04 / SAFETY

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.