- YouTube Image-based AI Search
Search for influencers using an image based query (along with other filters) and you will get influencers who have posted content similar to the query image. The image is matched against video and short thumbnails. Default 1 RPS. Each resulting profile costs 0.025 credits.
Page number (0-indexed). The offset is calculated as page * pageSize, so changing pageSize between pages will shift the window and may cause duplicate or missed results. The total number of results that can be accessed is limited to 1500 — that is, (page + 1) * pageSize must not exceed 1500. Requests beyond this limit will receive a 400 error.
Number of results per page. Each result costs 0.025 credits. The maximum total depth of results (page * pageSize + pageSize) is 1500. For example, with pageSize 50 you can paginate up to page 29.
Additional filters to refine the search results
{ "followersCount": { "min": 13000 }, "gender": "FEMALE", "lastPostedInDays": 90, "accountType": "creator", "language": "en", "age": { "min": "18" }, "engagementRate": { "min": 0.04 }, "postingFrequency": { "min": 4, "max": 20 }, "viewsCount": { "min": 10000, "calculationMethod": "median" }, "followersGrowthRate": { "interval": "i3months", "min": 0.05 }, "hasEmail": true, "maxPostAgeMonths": 3 }
curl -i -X POST \
https://api.modash.io/v1/ai/youtube/image-search \
-H 'Authorization: Bearer <YOUR_token_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"page": 0,
"pageSize": 6,
"filters": {
"followersCount": {
"min": 13000
},
"gender": "FEMALE",
"lastPostedInDays": 90,
"accountType": "creator",
"language": "en",
"age": {
"min": "18"
},
"engagementRate": {
"min": 0.04
},
"postingFrequency": {
"min": 4,
"max": 20
},
"viewsCount": {
"min": 10000,
"calculationMethod": "median"
},
"followersGrowthRate": {
"interval": "i3months",
"min": 0.05
},
"hasEmail": true,
"maxPostAgeMonths": 3
},
"imageType": "image/jpeg",
"base64Image": "string"
}'Approximate number of profiles matching the search query. This is estimated from similarity score distribution and can exceed how many profiles pagination can actually return.
{ "error": false, "total": 0, "profiles": [ { … } ] }