External API for accessing VwD creators data.
https://api.vwd.ai/api/public/v1/
https://apidocs.vwd.ai/_mock/apis/
https://api.vwd.ai/api/public/v1/lists/
https://apidocs.vwd.ai/_mock/apis/lists/
curl -i -X GET \
'https://api.vwd.ai/api/public/v1/lists/?limit=10&page=1' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "lists": [ { … } ], "total": 10, "count": 2, "next": null }
https://api.vwd.ai/api/public/v1/lists/{id}/
https://apidocs.vwd.ai/_mock/apis/lists/{id}/
curl -i -X GET \
'https://api.vwd.ai/api/public/v1/lists/00000000-0000-0000-0000-000000000000/?include_child_scores=true&limit=10&page=1' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "id": "00000000-0000-0000-0000-000000000000", "name": "List A", "influencers_count": 5, "creators": [ { … } ], "total": 5, "count": 2, "next": "/api/public/v1/lists/000.../?page=2&limit=2" }
https://api.vwd.ai/api/public/v1/lists/{id}/creators/
https://apidocs.vwd.ai/_mock/apis/lists/{id}/creators/
curl -i -X POST \
https://api.vwd.ai/api/public/v1/lists/00000000-0000-0000-0000-000000000000/creators/ \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"influencer_ids": [
1,
2,
3
]
}'
{ "added_influencers": [ 1, 2 ], "already_present": [ 2 ], "not_found_influencers": [ 999 ] }