Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Generate comprehensive, accurate API documentation from source code. Use when creating or updating API documentation, generating OpenAPI specs, or when users mention API docs, endpoints, or documentation.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | -24% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -35% | 0% |
| case-05 | ✗→✓ | ▲ Improved | -2% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -15% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -26% | 0% |
markdown## GET /api/v1/users/:id ### 描述 简要说明这个端点做什么 ### 参数 | 名称 | 类型 | 必填 | 说明 | |------|------|------|------| | id | string | 是 | 用户 ID | ### 响应 **200 成功**
{ "id": "usr_123", "name": "John Doe", "email": "john@example.com", "created_at": "2025-01-15T10:30:00Z" }
**404 未找到**{ "error": "USER_NOT_FOUND", "message": "User does not exist" }
### 示例
**cURL**curl -X GET "https://api.example.com/api/v1/users/usr_123" \ -H "Authorization: Bearer YOUR_TOKEN"
**JavaScript**const user = await fetch('/api/v1/users/usr_123', { headers: { 'Authorization': 'Bearer token' } }).then(r => r.json());
**Python**response = requests.get( 'https://api.example.com/api/v1/users/usr_123', headers={'Authorization': 'Bearer token'} ) user = response.json()
Other measured skills in the registry, with their headline benchmark lift.