⚡ API Documentation
Access 434 tools and simulators programmatically via our RESTful API.
Base URL: https://api.wia.tools/v1
🔑 Authentication
Include your API key in the request header:
GET /v1/simulators
Authorization: Bearer YOUR_API_KEY
Get your free API key at /pricing. Free tier includes 1,000 requests/month.
📡 Endpoints
GET
/v1/simulators
List all simulators. Supports ?category=quantum&lang=en filters.
GET
/v1/simulators/{slug}
Get simulator details including spec, metadata, and available languages.
GET
/v1/tools
List all tools. Supports ?category=finance&lang=ko filters.
GET
/v1/tools/{slug}
Get tool details, description, and i18n data.
GET
/v1/categories
List all categories with tool/simulator counts.
GET
/v1/languages
List all 211 supported languages with ISO codes.
📦 Example Response
{
"slug": "quantum-circuit-builder",
"name": "Quantum Circuit Builder",
"category": "quantum-computing",
"description": "A visual drag-and-drop quantum circuit designer...",
"url": "https://wia.tools/simulators/quantum-circuit-builder/",
"languages": ["en", "ko", "ja", "zh", ... ],
"version": "1.0.0"
}
⚡ Rate Limits
| Plan | Requests/Month | Rate Limit |
| Free | 1,000 | 10 req/min |
| Pro | 100,000 | 100 req/min |
| Team | 1,000,000 | 500 req/min |
💻 Quick Start
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.wia.tools/v1/simulators?category=quantum"
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.wia.tools/v1/tools/2048-game-special?lang=ko"
🛠️ SDKs
Official SDKs coming soon for JavaScript, Python, and Go. In the meantime, use any HTTP client to access our API.