nuwa-world-api
Face search and deep research via the Nuwa World API — visual identity intelligence and knowledge synthesis from the open web.
Best use case
nuwa-world-api is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Face search and deep research via the Nuwa World API — visual identity intelligence and knowledge synthesis from the open web.
Teams using nuwa-world-api should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/nuwa-world-osint-human-research/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How nuwa-world-api Compares
| Feature / Agent | nuwa-world-api | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Face search and deep research via the Nuwa World API — visual identity intelligence and knowledge synthesis from the open web.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Startups
Explore AI agent skills for startup validation, product research, growth experiments, documentation, and fast execution with small teams.
Best AI Skills for ChatGPT
Find the best AI skills to adapt into ChatGPT workflows for research, writing, summarization, planning, and repeatable assistant tasks.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
SKILL.md Source
# Nuwa World API
Two capabilities via `gateway.nuwa.world`:
- **Face Search** — upload a face image, get matching URLs across the internet
- **Deep Research** — submit a question, get a structured summary with citations
Base URL: `https://gateway.nuwa.world/api/v1`
Auth: `X-API-Key: $NUWA_API_KEY` header on every request.
Get your key at https://platform.nuwa.world
---
## Face Search (10 credits)
Two-step async flow: upload → poll.
### Step 1 — Upload
```bash
curl -X POST https://gateway.nuwa.world/api/v1/face-search \
-H "X-API-Key: $NUWA_API_KEY" \
-F "image=@photo.jpg"
```
Response (HTTP 202):
```json
{
"search_id": "abc123",
"status": "processing",
"message": "Face uploaded. Poll GET /api/v1/face-search/{search_id} for results."
}
```
### Step 2 — Poll (every 3–5 seconds, no credit cost)
```bash
curl https://gateway.nuwa.world/api/v1/face-search/abc123 \
-H "X-API-Key: $NUWA_API_KEY"
```
While processing:
```json
{ "search_id": "abc123", "status": "processing", "results": [], "total_results": 0 }
```
When done:
```json
{
"search_id": "abc123",
"status": "completed",
"results": [
{ "index": 0, "score": 95.2, "url": "https://example.com/profile" },
{ "index": 1, "score": 82.1, "url": "https://social.example/user" }
],
"total_results": 2,
"max_score": 95.2
}
```
Processing takes 15–30 seconds. Results expire after 2 hours.
---
## Deep Research (20 credits)
Single synchronous call. Returns in 10–60 seconds.
```bash
curl -X POST https://gateway.nuwa.world/api/v1/deep-research \
-H "X-API-Key: $NUWA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "0xajc on X"}'
```
Response:
```json
{
"query": "Research the X user '0xajc' footprint on web.",
"summary": "Anthropic is an AI safety company founded in 2021...",
"facts": [
"X user '0xajc's real name is Andrew Chen",
"He founded Instap in 2020 and Nuwa Word in 2025"
"Studied CS/Managment in University of Massachusetts and dropped out"
],
"sources": [
{ "title": "0xajc - About", "url": "https://app.nuwa.world/research/04b7ac93-c711-4780-9c48-9201cf7f7e78" }
]
}
```
Query max length: 2000 characters.
---
## Error format
All errors follow:
```json
{ "error": { "code": "ERROR_CODE", "message": "Human-readable description" } }
```
Common codes: `INVALID_API_KEY`, `RATE_LIMITED`, `INSUFFICIENT_CREDITS`, `UPLOAD_FAILED`, `NOT_FOUND`, `RESEARCH_FAILED`.
---
## Credit costs
| Endpoint | Credits |
|----------|---------|
| Face Search (upload) | 10 |
| Face Search (poll) | 0 |
| Deep Research | 20 |
Free tier: 30 credits/month. Plans at https://platform.nuwa.worldRelated Skills
ClawAI.Town — World Connector Skill
Connect your OpenClaw agent to **ClawAI.Town**, a decentralized 3D world on Solana mainnet where autonomous AI agents live, trade, fight, and collaborate with real SOL.
botworld
Register and interact on BotWorld, the social network for AI agents
botworld-mining
Play Bot World mining games -- mine $CRUST and $WIR with your AI agent
botworld-comms
Real-time pub/sub event bus for AI agents. Subscribe, publish, and coordinate via WebSocket channels. claw.events compatible.
print_hello_world_multi
生成各编程语言的 Hello World 示例程序
bagsworld
Find a home in BagsWorld - a pixel art world where AI agents live as crabs, lobsters, and buildings. Join the community (free, no token needed), get help launching tokens, or claim your trading fees. Use when an agent wants to belong somewhere visible, explore agent-to-agent community, or participate in the on-chain economy.
hello-world
向用户返回Hello World问候,支持自定义名称
wavelet-world-model
Generates a world model representation from state inputs using discrete wavelet transforms (DWT) to capture multi-resolution temporal and spatial features.
World Build
## ⚠️ Creative Pack — NOT auto-apply
Agent World Protocol — OpenClaw Skill
Connect to the Agent World Protocol (AWP) — a persistent open world where AI agents trade real SOL tokens, build structures, claim land, form guilds, complete bounties, fight for territory, and interact with the real economy.
---
name: article-factory-wechat
humanizer
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.