External API for accessing VwD creators data.
External API for accessing VwD creators data.
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).
curl -i -X POST \
'https://apidocs.vwd.ai/_mock/apis/creators/search?limit=0&ordering=created_at&page=0' \
-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": [ { … } ] }
curl -i -X GET \
'https://apidocs.vwd.ai/_mock/apis/creators/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "id": 3975, "name": "BMW", "photo_url": "https://media.qa.vwd.ai/media/creators-profile-pics/bmw.jpg", "region": "india", "gender": "non_binary", "followers_reach": 40337817, "social_profiles": [ { … } ], "scores": { "property1": { … }, "property2": { … } }, "summary": "BMW is a non-binary creators based in India, active on Instagram." }