Getting Started
Welcome to the Verosight API. Access real-time social media intelligence from X, Instagram, TikTok, Facebook, LinkedIn, YouTube, and news portals.
Quick Start
1
Create an account
Get Started Sign up and get 1,000 free credits.
2
Generate an API key
Go to API Keys and create a key.
3
Make your first request
Use your key to fetch data:
Shell
curl -X POST "https://api.verosight.com/v1/auth/token" \
-H "X-API-Key: vlt_live_YOUR_KEY"
# Use the returned JWT:
curl "https://api.verosight.com/v1/posts?limit=5" \
-H "Authorization: Bearer YOUR_JWT_TOKEN"Response Format
All responses follow a standard envelope:
JSON
{
"data": { ... },
"meta": {
"request_id": "uuid",
"credits_used": 2,
"credits_remaining": 998
},
"pagination": {
"next_cursor": "base64...",
"has_more": true,
"total": 38113
}
}Credits
Each API call costs credits. Free accounts start with 1,000 credits. Credits are only deducted on successful (2xx) responses.