Go to App

ExportComments API

Export comments, reviews, followers, and other data from 20+ social media platforms via a simple REST API.

Quick Start

Get up and running in 5 steps:

  1. Sign up at app.exportcomments.com and subscribe to a Premium or Business plan
  2. Get your API token from the API dashboard
  3. Create an export by sending a POST request to /api/v3/job
  4. Monitor progress using webhooks or polling
  5. Download results when the job status is done

Base URL

All API requests should be made to:

bash
https://exportcomments.com

Content Type

All requests and responses use JSON:

bash
Content-Type: application/json

Your First Export

bash
curl -X POST https://exportcomments.com/api/v3/job \
-H "X-AUTH-TOKEN: your-api-key" \
-H "Content-Type: application/json" \
-d '{"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"}'
Response201
json
{
"id": 12345,
"guid": "b4219d47-3138-5efd-9762-2ef9f9495084",
"status": "queueing",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
}

What's Next

  • Authentication - Learn about API token authentication
  • Export Jobs - Full reference for creating and managing exports
  • Webhooks - Get real-time notifications when exports complete
  • Sandbox Mode - Test the API without consuming your quota
  • API Tiers - Compare Premium and Business plans