nuwa-world-osint-human-researchFace search and deep research via the Nuwa World API — visual identity intelligence and knowledge synthesis from the open web.
Install via ClawdBot CLI:
clawdbot install andrewchen-oss/nuwa-world-osint-human-researchTwo capabilities via gateway.nuwa.world:
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
Two-step async flow: upload → poll.
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):
{
"search_id": "abc123",
"status": "processing",
"message": "Face uploaded. Poll GET /api/v1/face-search/{search_id} for results."
}
curl https://gateway.nuwa.world/api/v1/face-search/abc123 \
-H "X-API-Key: $NUWA_API_KEY"
While processing:
{ "search_id": "abc123", "status": "processing", "results": [], "total_results": 0 }
When done:
{
"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.
Single synchronous call. Returns in 10–60 seconds.
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:
{
"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.
All errors follow:
{ "error": { "code": "ERROR_CODE", "message": "Human-readable description" } }
Common codes: INVALID_API_KEY, RATE_LIMITED, INSUFFICIENT_CREDITS, UPLOAD_FAILED, NOT_FOUND, RESEARCH_FAILED.
| Endpoint | Credits |
|----------|---------|
| Face Search (upload) | 10 |
| Face Search (poll) | 0 |
| Deep Research | 20 |
Free tier: 30 credits/month. Plans at https://platform.nuwa.world
Generated Mar 1, 2026
HR departments can use face search to verify candidate identities and uncover undisclosed online profiles, ensuring authenticity. Deep research can compile a structured summary of a candidate's professional footprint from public sources, aiding in due diligence.
Journalists can upload images of unknown individuals to find matching photos across the web, aiding in source identification. Deep research can synthesize information on subjects from open web data, providing citations for fact-checking and story development.
Agencies can perform face searches to locate suspects or missing persons by matching uploaded photos to online images. Deep research can aggregate public records and social media data into concise reports for intelligence gathering and case analysis.
Companies can use face search to monitor unauthorized use of executive or brand ambassador images online. Deep research can investigate impersonators or negative actors, compiling evidence for legal actions or public relations strategies.
Researchers can upload photos of historical or contemporary figures to trace visual representations across digital archives. Deep research can answer specific queries about individuals, synthesizing biographical data with cited sources for academic papers.
Offer tiered monthly plans with varying credit limits, targeting businesses needing regular OSINT capabilities. Revenue comes from recurring subscriptions, with upsells for higher credit tiers or enterprise support.
Sell credit packs that users purchase as needed, ideal for occasional users or specific projects. Revenue is generated from one-time credit sales, with potential volume discounts to encourage larger purchases.
License the API to large organizations for integration into their internal tools, with custom branding and dedicated support. Revenue includes upfront licensing fees and ongoing maintenance contracts.
💬 Integration Tip
Ensure the NUWA_API_KEY is securely stored as an environment variable and use curl or similar tools for initial testing before coding integrations.
Summarize URLs or files with the summarize CLI (web, PDFs, images, audio, YouTube).
AI-optimized web search via Tavily API. Returns concise, relevant results for AI agents.
This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses DuckDuckGo's search API to return results in clean, formatted output (text, markdown, or JSON). Use for research, fact-checking, finding recent information, or gathering web resources.
Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.
Search indexed Discord community discussions via Answer Overflow. Find solutions to coding problems, library issues, and community Q&A that only exist in Discord conversations.
Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and WolframAlpha knowledge queries. No API keys required.