Quick Start
iFlow Search API provides web search, image search, and web content fetching capabilities. All endpoints return LLM-friendly structured data.
1. Get Your API Key
Visit API Key Management to get your personal API Key. If you don't have an account, please sign up and log in first.
Note: Your API Key has full account permissions. Do not share it with others.
2. Make a Request
curl -X POST https://platform.iflow.cn/api/search/webSearch \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"keywords": "latest AI news", "num": 1}'
3. Get Results
{
"success": true,
"code": "200",
"message": "success",
"data": {
"organic": [
{
"title": "Top 10 AI Breakthroughs in 2025",
"link": "https://example.com/ai-news",
"snippet": "Artificial intelligence has made remarkable progress...",
"position": 1,
"date": null
}
],
"query": "latest AI news"
}
}
Available Endpoints
| Endpoint | Path | Description |
|---|---|---|
| Web Search | /api/search/webSearch | Search web pages by keywords |
| Image Search | /api/search/imageSearch | Search images by keywords |
| Web Fetch | /api/search/webFetch | Fetch and extract content from a URL |
Skill Installation
If you use Claude Code or OpenClaw, you can install search capabilities with one click via the Skill Installation Guide — no manual API calls needed.