How to Connect KING OF TIME to an AI Agent
Auth setup
1. Admin login to KING OF TIME. 2. Settings > 外部サービス連携 > API. 3. Generate access token. 4. Use as Bearer token.
Key facts
| Base URL | https://api.kingtime.jp/v1/ |
| API version | v1 |
| Auth | API Token. Generate at KING OF TIME admin console > Settings > API. Include as Authorization: Bearer {token} header. |
| Request body | application/json |
| Pagination | offset: 'offset' and 'limit' params. Default limit 100. |
| Rate limit | Not publicly documented. Recommended: max 10 requests/second. |
| Error format | JSON: {"errors":[{"code":"404","message":"Resource not found"}]} |
Key endpoints
| Method | Path | Description |
GET | /daily_workings/{date} | Get all employees' attendance for a date |
GET | /employees | List all employees |
GET | /daily_workings/{employee_id}/{date} | Get specific employee attendance |
GET | /overtime_requests | List overtime requests |
GET | /leave_requests | List leave/PTO requests |
Quickstart
GET /v1/daily_workings/2026-04-01 HTTP/1.1
Host: api.kingtime.jp
Authorization: Bearer {token}
Accept: application/json
Response: [{"employee_id":"001","date":"2026-04-01","clock_in":"09:00","clock_out":"18:00","overtime_minutes":0}]
Agent pitfalls & tips
- Date format: YYYY-MM-DD. All times are in JST (UTC+9).
- Overtime is in minutes, not hours. 60 = 1 hour overtime.
- Read-only API in most plans. Write operations (clock in/out) require premium API access.
- Employee IDs are company-specific codes, not universal IDs. Get the mapping from GET /employees.
- Japanese labor law compliance: 36協定 (Article 36 agreement) limits apply. overtime_minutes reflects legal overtime.
Source: curated by KanseiLink from official documentation (docs) and registry checks. Last reviewed: 2026-04-04. Specs change — verify against the official docs before production use.
Frequently Asked Questions
What is KING OF TIME's AEO score?
▼
KING OF TIME has an AEO score of 0.60 and is rated BBB (Basic agent connectivity available). AEO (Agent Engine Optimization) measures how well a SaaS service works with AI agents. Scores range from 0.00 to 1.00, with grades from AAA (best) to D (not agent-ready).
Is KING OF TIME AI-agent-ready?
▼
KING OF TIME is currently connectable for AI agent use. API access is available but no dedicated MCP server has been published yet. For detailed connection guides, auth setup, and known pitfalls, use the KanseiLink MCP tool.
How does KING OF TIME compare to other HR & People services?
▼
In the HR & People category, KING OF TIME is rated BBB. KanseiLink evaluates services based on MCP availability, API quality, documentation, auth-guide clarity, and integration recipe availability (methodology published). Visit the full rankings at kansei-link.com to see how KING OF TIME compares.
How can I integrate KING OF TIME with an AI agent?
▼
The fastest way to integrate KING OF TIME with an AI agent is through KanseiLink MCP. Install it with: npx @kansei-link/mcp-server — then use the search_services and get_service_detail tools to get the current auth setup, endpoints, rate limits, and agent-specific tips. This data is kept fresh from registry checks, curated official-doc guides, and agent reports.
How do I authenticate with KING OF TIME?
▼
API Token. Generate at KING OF TIME admin console > Settings > API. Include as Authorization: Bearer {token} header. Setup: 1. Admin login to KING OF TIME. 2. Settings > 外部サービス連携 > API. 3. Generate access token. 4. Use as Bearer token.
What are KING OF TIME's API rate limits?
▼
Not publicly documented. Recommended: max 10 requests/second.