Skip to main content

Get Started in 3 Steps

Follow this guide to make your first successful API call to SociaVault.
1

Get Your API Key

Sign up for a free account and get your API key from the SociaVault Dashboard.
Keep your API key secure! Never expose it in client-side code or public repositories.
2

Make Your First Request

Try fetching a TikTok profile. Replace YOUR_API_KEY with your actual API key:
curl --request GET \
  --url 'https://api.sociavault.com/v1/scrape/tiktok/profile?handle=stoolpresidente' \
  --header 'X-API-Key: YOUR_API_KEY'
This endpoint costs 1 credit per request. Free tier includes 100 credits.
3

Check the Response

You should receive a JSON response with the TikTok profile data:
{
  "user": {
    "id": "6828452746644210694",
    "uniqueId": "stoolpresidente",
    "nickname": "Dave Portnoy",
    "avatarLarger": "https://...",
    "signature": "Founder of Barstool Sports",
    "verified": true,
    "stats": {
      "followerCount": 3800000,
      "followingCount": 723,
      "heartCount": 56700000,
      "videoCount": 1245
    }
  }
}
Success! You’ve made your first API call. Now explore all 77 endpoints.

What’s Next?

Common Use Cases

Extract follower counts, engagement rates, and audience demographics across platforms to track influencer performance.Endpoints: TikTok Demographics, Instagram Profile, YouTube Channel
Search for trending content, hashtags, and viral videos to inform your content strategy.Endpoints: TikTok Trending, Instagram Reels, YouTube Search
Monitor competitor profiles, posts, and engagement to stay ahead of the competition.Endpoints: All Profile endpoints, Posts endpoints, Video endpoints
Track competitor ads across Facebook, Google, and LinkedIn ad libraries.Endpoints: Facebook Ad Library, Google Ad Library, LinkedIn Ad Library

Need Help?