# E2e Review 1781166958461

> E2E 自动审核测试：JSONPlaceholder 公开只读接口（GET，幂等无副作用）

- Skill: `xapi-labs/e2e-review-1781166958461` (Agent Skill)
- Install (CLI): `npx skillmds@latest add xapi-labs/e2e-review-1781166958461`
- Raw SKILL.md: https://api.skillmd.com/api/skills/xapi-labs/e2e-review-1781166958461/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: xapi-labs (https://skillmd.com/u/xapi-labs)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/xapi-labs/e2e-review-1781166958461

---


# E2E Review 1781166958461

E2E 自动审核测试：JSONPlaceholder 公开只读接口（GET，幂等无副作用）

## Auth

```bash
export XAPI_KEY=xapi_...
```

Gateway: `e2e-review-1781166958461.p.xapi.to` (prod) / `e2e-review-1781166958461.localhost:3001` (local).

## Endpoints

- `GET /posts/:postId` — 获取单篇文章
- `GET /users/:userId` — 获取用户
- `GET /posts4` — 获取所有文章

## Example

```bash
curl -sS "https://e2e-review-1781166958461.p.xapi.to/posts/:postId" \
  -H "xapi-key: $XAPI_KEY"
```

