Skip to main content

Welcome

ZiloData provides comprehensive APIs for extracting data from popular social media platforms. Our APIs support LinkedIn, Reddit, TikTok, X (Twitter), and YouTube.

Available APIs

Base URL

All APIs are hosted at:
https://api.zilodata.com/api/v1/{platform}
Where {platform} can be: linkedin, reddit, tiktok, x, or youtube

Authentication

All API endpoints support two authentication methods:

Bearer Token Authentication

Use JWT bearer tokens in the Authorization header:
Authorization: Bearer YOUR_JWT_TOKEN

API Key Authentication

Use your API key in the X-API-Key header:
X-API-Key: YOUR_API_KEY
Both authentication methods are defined in the OpenAPI specification files:
"security": [
  {
    "bearerAuth": []
  },
  {
    "apiKeyAuth": []
  }
]

Rate Limits

Please refer to your API plan for specific rate limits. Contact support if you need higher limits.

Response Format

All APIs return JSON responses. Error responses follow this format:
{
  "error": "Error type",
  "message": "Detailed error message",
  "code": 400
}

Getting Started

  1. Choose the platform API you want to use
  2. Review the OpenAPI specification for that platform
  3. Authenticate using either Bearer token or API key
  4. Start making requests to the endpoints