1. Create an Account

Sign in with Google at zocialmine.com to create your account. You’ll receive 100 free credits to get started.

2. Get Your API Key

After signing in, navigate to your dashboard to find your unique API key. You’ll use this key in the x-api-key header for all API requests.

3. Make Your First Request

curl -X POST https://api.zocialmine.com/v1/tiktok/profile \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "url": "https://www.tiktok.com/@username"
  }'

4. Understand the Response

All API responses follow a consistent format:
Success Response
{
  "status": "success",
  "data": {
    // Response data here
  }
}
Error Response
{
  "status": "error",
  "message": "Description of what went wrong"
}

5. Explore More Endpoints

Each successful API call deducts 1 credit from your balance. You can check your credit balance in the dashboard.