External API for accessing VwD creators data.
https://api.vwd.ai/api/public/v1/
https://apidocs.vwd.ai/_mock/apis/
Public API Endpoint
Use this endpoint to search creators based on various filters, with support for pagination and ordering. This is a POST request and requires an API key for authentication.
Provide filters to narrow down the search results. If no filters are provided, all creators are listed with pagination applied.
Ordering of results. Use a minus (-) prefix for descending order.
Filter by the creator's display name (partial match allowed).
https://api.vwd.ai/api/public/v1/creators/search/
https://apidocs.vwd.ai/_mock/apis/creators/search/
curl -i -X POST \
'https://api.vwd.ai/api/public/v1/creators/search/?include_child_scores=true&limit=10&ordering=-created_at&page=1' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"region": "europe",
"gender": "male",
"followers_reach": 720000,
"platform": {
"instagram": true,
"facebook": false
},
"content_alignment": {
"language_content": 85,
"sexual_content": 85,
"violence_content": 86,
"cyber_bully": 84,
"drug_content": 84,
"hate_content": 82,
"alcohol_content": 83,
"gambling_content": 82,
"politics_content": 81,
"religion_content": 80
},
"brands": [],
"creators_display_name": "John",
"is_filtered": true
}'{ "next": "https://api.vwd.ai/api/public/v1/creators/search/?limit=10&ordering=-created_at&page=2", "previous": null, "total_pages": 15, "total": 144, "creators": [ { … } ] }
https://api.vwd.ai/api/public/v1/creators/{id}/
https://apidocs.vwd.ai/_mock/apis/creators/{id}/
curl -i -X GET \
'https://api.vwd.ai/api/public/v1/creators/12345/?include_child_scores=true' \
-H 'Authorization: YOUR_API_KEY_HERE'Successfully retrieved the creators profile.
Total compliance violations for this creator broken down by compliance family. Sum of values equals total_compliance_violations. All three keys are always present (zeros when no violations); values are non-negative integers.
Indicates whether the creator is currently being monitored (actively scanned for new content).
{ "id": 10, "name": "Influencer 1", "photo_url": "https://media.vwd.ai/media/creators-profile-pics/influencer.jpg", "region": "europe", "gender": "female", "is_public": true, "followers_reach": 500000, "follower_reach_normalised": "500 k", "pronoun": "she/her", "age": 28, "social_profiles": [ { … } ], "scores": { "property1": { … }, "property2": { … } }, "summary": "Popular lifestyle influencer based in North America", "avg_comments_per_post": "150", "avg_likes_per_post": "5.2 k", "avg_views_per_video": "12.5 k", "total_compliance_violations": 0, "compliance_violations_by_category": { "FTC": 0, "FINRA": 0, "Healthcare": 0 }, "is_monitored": true, "brands": [ { … } ] }
https://api.vwd.ai/api/public/v1/creators/
https://apidocs.vwd.ai/_mock/apis/creators/
curl -i -X GET \
'https://api.vwd.ai/api/public/v1/creators/?include_child_scores=false&limit=10&page=1' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "creators": [ { … } ], "total": 100, "count": 10, "next": "https://api.vwd.ai/api/public/v1/creators/?page=2&limit=10" }