External API for accessing VwD creators data.
https://apidocs.vwd.ai/_mock/apis/
https://api.vwd.ai/api/public/v1/
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.
Filter by the creator's display name (partial match allowed).
https://apidocs.vwd.ai/_mock/apis/creators/search/
https://api.vwd.ai/api/public/v1/creators/search/
curl -i -X POST \
'https://apidocs.vwd.ai/_mock/apis/creators/search/?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_bullying_content": 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.qa.vwd.ai/api/public/v1/creators/search/?limit=10&ordering=-created_at&page=2", "previous": null, "total_pages": 15, "total": 144, "creators": [ { … } ] }
https://apidocs.vwd.ai/_mock/apis/creators/{id}/
https://api.vwd.ai/api/public/v1/creators/{id}/
curl -i -X GET \
https://apidocs.vwd.ai/_mock/apis/creators/12345/ \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "id": 10, "name": "Influencer 1", "photo_url": "https://media.vwd.ai/media/creators-profile-pics/influencer.jpg", "region": "north_america", "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, "brands": [ { … } ] }