AI 搜索
curl --request POST \
--url https://api.aisa.one/apis/v1/waveinflu/ai-search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"platform": "instagram",
"query": "beauty creators in the US",
"limit": 10,
"filters": {
"regions": [
"<string>"
],
"languages": [
"<string>"
],
"minFollowers": 123,
"maxFollowers": 123,
"minPlayCount": 123,
"maxPlayCount": 123,
"genders": [
"<string>"
],
"ethnicities": [
"<string>"
],
"creatorTypes": [
"<string>"
],
"faceVisibilities": [
"<string>"
],
"workspaceDeduplicationEnabled": true
}
}
'import requests
url = "https://api.aisa.one/apis/v1/waveinflu/ai-search"
payload = {
"platform": "instagram",
"query": "beauty creators in the US",
"limit": 10,
"filters": {
"regions": ["<string>"],
"languages": ["<string>"],
"minFollowers": 123,
"maxFollowers": 123,
"minPlayCount": 123,
"maxPlayCount": 123,
"genders": ["<string>"],
"ethnicities": ["<string>"],
"creatorTypes": ["<string>"],
"faceVisibilities": ["<string>"],
"workspaceDeduplicationEnabled": True
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
platform: 'instagram',
query: 'beauty creators in the US',
limit: 10,
filters: {
regions: ['<string>'],
languages: ['<string>'],
minFollowers: 123,
maxFollowers: 123,
minPlayCount: 123,
maxPlayCount: 123,
genders: ['<string>'],
ethnicities: ['<string>'],
creatorTypes: ['<string>'],
faceVisibilities: ['<string>'],
workspaceDeduplicationEnabled: true
}
})
};
fetch('https://api.aisa.one/apis/v1/waveinflu/ai-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/waveinflu/ai-search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'platform' => 'instagram',
'query' => 'beauty creators in the US',
'limit' => 10,
'filters' => [
'regions' => [
'<string>'
],
'languages' => [
'<string>'
],
'minFollowers' => 123,
'maxFollowers' => 123,
'minPlayCount' => 123,
'maxPlayCount' => 123,
'genders' => [
'<string>'
],
'ethnicities' => [
'<string>'
],
'creatorTypes' => [
'<string>'
],
'faceVisibilities' => [
'<string>'
],
'workspaceDeduplicationEnabled' => true
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/waveinflu/ai-search"
payload := strings.NewReader("{\n \"platform\": \"instagram\",\n \"query\": \"beauty creators in the US\",\n \"limit\": 10,\n \"filters\": {\n \"regions\": [\n \"<string>\"\n ],\n \"languages\": [\n \"<string>\"\n ],\n \"minFollowers\": 123,\n \"maxFollowers\": 123,\n \"minPlayCount\": 123,\n \"maxPlayCount\": 123,\n \"genders\": [\n \"<string>\"\n ],\n \"ethnicities\": [\n \"<string>\"\n ],\n \"creatorTypes\": [\n \"<string>\"\n ],\n \"faceVisibilities\": [\n \"<string>\"\n ],\n \"workspaceDeduplicationEnabled\": true\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/waveinflu/ai-search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"platform\": \"instagram\",\n \"query\": \"beauty creators in the US\",\n \"limit\": 10,\n \"filters\": {\n \"regions\": [\n \"<string>\"\n ],\n \"languages\": [\n \"<string>\"\n ],\n \"minFollowers\": 123,\n \"maxFollowers\": 123,\n \"minPlayCount\": 123,\n \"maxPlayCount\": 123,\n \"genders\": [\n \"<string>\"\n ],\n \"ethnicities\": [\n \"<string>\"\n ],\n \"creatorTypes\": [\n \"<string>\"\n ],\n \"faceVisibilities\": [\n \"<string>\"\n ],\n \"workspaceDeduplicationEnabled\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/waveinflu/ai-search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"platform\": \"instagram\",\n \"query\": \"beauty creators in the US\",\n \"limit\": 10,\n \"filters\": {\n \"regions\": [\n \"<string>\"\n ],\n \"languages\": [\n \"<string>\"\n ],\n \"minFollowers\": 123,\n \"maxFollowers\": 123,\n \"minPlayCount\": 123,\n \"maxPlayCount\": 123,\n \"genders\": [\n \"<string>\"\n ],\n \"ethnicities\": [\n \"<string>\"\n ],\n \"creatorTypes\": [\n \"<string>\"\n ],\n \"faceVisibilities\": [\n \"<string>\"\n ],\n \"workspaceDeduplicationEnabled\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"requestId": "req-b6l",
"billingRequestId": "3f522b56-2bb4-426c-9b76-5c04c91a9cb3",
"data": {
"items": [
{
"id": "<string>",
"username": "<string>",
"fullName": "<string>",
"biography": "<string>",
"email": "<string>",
"followerCount": 123,
"region": "<string>",
"language": "<string>",
"averagePlayCount": 123,
"medianPlayCount": 123,
"averageEngagementRate": 123,
"medianEngagementRate": 123,
"gender": "<string>",
"ageRange": "<string>",
"ethnicity": "<string>",
"faceVisibility": "<string>",
"accountPositioning": [
"<string>"
],
"aiDescription": "<string>",
"platform": "<string>",
"profileUrl": "<string>",
"score": 123
}
],
"count": 2
}
}WaveInflu API
AI 搜索
在 Instagram、TikTok 或 YouTube 上,用自然语言描述查找创作者。
POST
https://api.aisa.one/apis/v1
/
waveinflu
/
ai-search
AI 搜索
curl --request POST \
--url https://api.aisa.one/apis/v1/waveinflu/ai-search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"platform": "instagram",
"query": "beauty creators in the US",
"limit": 10,
"filters": {
"regions": [
"<string>"
],
"languages": [
"<string>"
],
"minFollowers": 123,
"maxFollowers": 123,
"minPlayCount": 123,
"maxPlayCount": 123,
"genders": [
"<string>"
],
"ethnicities": [
"<string>"
],
"creatorTypes": [
"<string>"
],
"faceVisibilities": [
"<string>"
],
"workspaceDeduplicationEnabled": true
}
}
'import requests
url = "https://api.aisa.one/apis/v1/waveinflu/ai-search"
payload = {
"platform": "instagram",
"query": "beauty creators in the US",
"limit": 10,
"filters": {
"regions": ["<string>"],
"languages": ["<string>"],
"minFollowers": 123,
"maxFollowers": 123,
"minPlayCount": 123,
"maxPlayCount": 123,
"genders": ["<string>"],
"ethnicities": ["<string>"],
"creatorTypes": ["<string>"],
"faceVisibilities": ["<string>"],
"workspaceDeduplicationEnabled": True
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
platform: 'instagram',
query: 'beauty creators in the US',
limit: 10,
filters: {
regions: ['<string>'],
languages: ['<string>'],
minFollowers: 123,
maxFollowers: 123,
minPlayCount: 123,
maxPlayCount: 123,
genders: ['<string>'],
ethnicities: ['<string>'],
creatorTypes: ['<string>'],
faceVisibilities: ['<string>'],
workspaceDeduplicationEnabled: true
}
})
};
fetch('https://api.aisa.one/apis/v1/waveinflu/ai-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/waveinflu/ai-search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'platform' => 'instagram',
'query' => 'beauty creators in the US',
'limit' => 10,
'filters' => [
'regions' => [
'<string>'
],
'languages' => [
'<string>'
],
'minFollowers' => 123,
'maxFollowers' => 123,
'minPlayCount' => 123,
'maxPlayCount' => 123,
'genders' => [
'<string>'
],
'ethnicities' => [
'<string>'
],
'creatorTypes' => [
'<string>'
],
'faceVisibilities' => [
'<string>'
],
'workspaceDeduplicationEnabled' => true
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/waveinflu/ai-search"
payload := strings.NewReader("{\n \"platform\": \"instagram\",\n \"query\": \"beauty creators in the US\",\n \"limit\": 10,\n \"filters\": {\n \"regions\": [\n \"<string>\"\n ],\n \"languages\": [\n \"<string>\"\n ],\n \"minFollowers\": 123,\n \"maxFollowers\": 123,\n \"minPlayCount\": 123,\n \"maxPlayCount\": 123,\n \"genders\": [\n \"<string>\"\n ],\n \"ethnicities\": [\n \"<string>\"\n ],\n \"creatorTypes\": [\n \"<string>\"\n ],\n \"faceVisibilities\": [\n \"<string>\"\n ],\n \"workspaceDeduplicationEnabled\": true\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/waveinflu/ai-search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"platform\": \"instagram\",\n \"query\": \"beauty creators in the US\",\n \"limit\": 10,\n \"filters\": {\n \"regions\": [\n \"<string>\"\n ],\n \"languages\": [\n \"<string>\"\n ],\n \"minFollowers\": 123,\n \"maxFollowers\": 123,\n \"minPlayCount\": 123,\n \"maxPlayCount\": 123,\n \"genders\": [\n \"<string>\"\n ],\n \"ethnicities\": [\n \"<string>\"\n ],\n \"creatorTypes\": [\n \"<string>\"\n ],\n \"faceVisibilities\": [\n \"<string>\"\n ],\n \"workspaceDeduplicationEnabled\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/waveinflu/ai-search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"platform\": \"instagram\",\n \"query\": \"beauty creators in the US\",\n \"limit\": 10,\n \"filters\": {\n \"regions\": [\n \"<string>\"\n ],\n \"languages\": [\n \"<string>\"\n ],\n \"minFollowers\": 123,\n \"maxFollowers\": 123,\n \"minPlayCount\": 123,\n \"maxPlayCount\": 123,\n \"genders\": [\n \"<string>\"\n ],\n \"ethnicities\": [\n \"<string>\"\n ],\n \"creatorTypes\": [\n \"<string>\"\n ],\n \"faceVisibilities\": [\n \"<string>\"\n ],\n \"workspaceDeduplicationEnabled\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"requestId": "req-b6l",
"billingRequestId": "3f522b56-2bb4-426c-9b76-5c04c91a9cb3",
"data": {
"items": [
{
"id": "<string>",
"username": "<string>",
"fullName": "<string>",
"biography": "<string>",
"email": "<string>",
"followerCount": 123,
"region": "<string>",
"language": "<string>",
"averagePlayCount": 123,
"medianPlayCount": 123,
"averageEngagementRate": 123,
"medianEngagementRate": 123,
"gender": "<string>",
"ageRange": "<string>",
"ethnicity": "<string>",
"faceVisibility": "<string>",
"accountPositioning": [
"<string>"
],
"aiDescription": "<string>",
"platform": "<string>",
"profileUrl": "<string>",
"score": 123
}
],
"count": 2
}
}用自然语言描述而非种子账号来查找创作者。
在你的 agent 里把这个端点跑起来 →
platform 与 query 为必填;另有 limit(1–100,默认 40)和与相似创作者相同的可选 filters(地区、语言、粉丝数与播放量区间、性别、种族、创作者类型、露脸情况、工作区去重)。
用一句话描述你想要的创作者(例如 "beauty creators in the US"),响应返回的创作者结构与相似创作者一致:id、username、fullName、biography、email、followerCount、averagePlayCount / medianPlayCount、averageEngagementRate / medianEngagementRate、region、language,以及 AI 推断的 gender、ageRange、ethnicity、faceVisibility、accountPositioning、aiDescription、profileUrl 和相关度 score。结果按 score 降序排列。
已有具体种子账号而非文字描述?请用 post_waveinflu_similar_creators。多数匹配已自带 email;对为 null 的结果请用 post_waveinflu_email_lookup。
按实际交付的达人数(data.count)计费。
示例
curl -X POST "https://api.aisa.one/apis/v1/waveinflu/ai-search" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"platform": "instagram",
"query": "beauty creators in the US",
"limit": 10
}'
// 把整段复制给 Claude Code、Codex、Cursor 或任意 coding agent。
// 连接、授权、跑通这个例子需要的东西都在里面 ——
// 不用粘贴任何 key,浏览器里点一次 Allow 就好。
{
"operation_id": "post_waveinflu_ai_search",
"arguments": {
"platform": "instagram",
"query": "beauty creators in the US",
"limit": 10
},
"max_price_usd": 0.5
}
// ── for the agent ─────────────────────────────────────────────────────────
// Register the AIsa MCP server, then call its `use` tool with the JSON above.
// name aisa
// endpoint https://mcp.aisa.one/mcp
// transport streamable-http
// auth OAuth. The server publishes RFC 9728 metadata, so open a
// browser and the user clicks Allow once — nothing to paste.
// If AISA_API_KEY is set, send it as a bearer header instead.
// Use your own MCP mechanism, not a hand-edited config file:
// Codex codex mcp add aisa --url https://mcp.aisa.one/mcp
// Claude Code claude mcp add --transport http -s user aisa https://mcp.aisa.one/mcp
// Cursor / VS Code a "url" entry for https://mcp.aisa.one/mcp in the MCP config
// The server lists five tools over https://mcp.aisa.one/servers worth of APIs:
// search, get_details, use, batch_use, list_categories. search and
// get_details are free; use is billed per call and max_price_usd refuses
// anything above the cap before spending. This operation's full contract —
// every argument, the response shape, the price and the pitfalls — is at
// https://aisa.one/docs/zh/api-reference/waveinflu/post_waveinflu-ai-search.md
// Then run the call and show me the result.
第一次用? 把任意 MCP 客户端指向
https://mcp.aisa.one/mcp —— Claude Code、
Codex、Cursor、VS Code 都可以。鉴权走 OAuth:客户端打开浏览器,你点一次
Allow,不需要粘贴任何 key。各客户端的具体命令和每次调用的价格见
aisa.one/zh-cn/mcp。授权
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
请求体
application/json