TopRank Skills

Home / Claw Skills / 搜索 / feishu-api-lookup
Official OpenClaw rules 54%

feishu-api-lookup

Look up Feishu Open API documentation. Activate when: needing to find a specific Feishu API endpoint, understanding API parameters/response, writing scripts that call Feishu APIs, or troubleshooting Feishu API errors. Uses web_search + web_fetch to find and extract API docs in real-time.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 feishu-api-lookup 技能。 若已安装,则直接安装 feishu-api-lookup 技能。

Overview

Skill Key
deadblue22/feishu-api-lookup
Author
deadblue22
Source Repo
openclaw/skills
Version
-
Source Path
skills/deadblue22/feishu-api-lookup
Latest Commit SHA
c9d92dd47561664942bd634bb36022b88a23c633

Extracted Content

SKILL.md excerpt

# Feishu API Lookup

Query Feishu Open Platform API documentation on demand. Since the Feishu docs site is a SPA that can't be statically scraped, this skill uses web search + page fetch to find API docs in real-time.

## When to Use

- Need to find a Feishu API endpoint (e.g., "how to forward a thread")
- Need to understand API parameters, request/response format
- Writing a Python/Node script that calls Feishu APIs
- Troubleshooting Feishu API error codes
- The built-in OpenClaw feishu plugin doesn't support the needed operation

## How to Look Up

### Step 1: Search for the API

Use `web_search` with targeted queries:

```
web_search("飞书 open API {你要找的功能} site:open.feishu.cn")
```

**Search tips:**
- Use Chinese keywords for better results: "发送消息", "转发话题", "合并转发", "创建文档", "多维表格"
- Add `site:open.feishu.cn` to limit to official docs
- Add `POST /im/v1/` or similar path patterns if you know the API domain
- Alternative: search `site:feishu.apifox.cn` for the Apifox mirror (sometimes more accessible)

**Common API domains:**
| Domain | Path prefix | Description |
|--------|------------|-------------|
| 消息 (IM) | `/im/v1/` | Messages, threads, reactions, pins |
| 通讯录 | `/contact/v3/` | Users, departments, groups |
| 云文档 | `/drive/v1/`, `/docx/v1/` | Docs, sheets, files |
| 多维表格 | `/bitable/v1/` | Bitable (multidimensional tables) |
| 知识库 | `/wiki/v2/` | Wiki spaces, nodes |
| 日历 | `/calendar/v4/` | Calendars, events |
| 审批 | `/approval/v4/` | Approvals |
| 任务 | `/task/v2/` | Tasks |
| 群组 | `/im/v1/chats/` | Chat groups |
| 权限 | `/drive/v1/permissions/` | File permissions |
| 应用 | `/application/v6/` | App management |

### Step 2: Fetch the API doc page

Use `web_fetch` to get the doc content:

```
web_fetch("https://open.feishu.cn/document/server-docs/im-v1/message/create", maxChars=15000)
```

**⚠️ The official docs site is SPA-rendered — `web_fetch` may return empty content.**

**Fallbacks when web_fetch fails:...

Related Claw Skills