This website requires JavaScript.

API Documentation

ExportComments.com Official API
 2.0.0 

[ Base URL: exportcomments.com/api/v2 ]
/data/pages/swagger-v2.yaml

Introduction

Welcome to the ExportComments.com API documentation. EXPORT COMMENTS API enables you to programatically manage and run your exports and retrieve extracted data.

You can find sample code in a variety of languages. By default curl is selected so that you can try out the commands in your terminal.

You may also be interested by our Github account, a place where you can find api clients ready to use.

Authentication

Each request must include your API Key for authentication.
You can find your API Key on your account page

Requests

POST requests must have a form-encoded body and the Content-Type: application/x-www-form-urlencoded; charset=utf-8 header.

GET requests must be url-encoded

All requests must be made over HTTPS. Any HTTP requests are responded to with a HTTP 302 to the equivalent HTTPS address.

If you are using the curl examples, make sure that any data you replace is properly shell-escaped.

ExportComments.com limits API usage to 5 requests per second, with any requests thereafter being queued up to a maximum of 5 requests. Requests thereafter will return a 429 status code.

Responses

Unless explicitly mentioned, JSON will be returned in all responses.

Errors

ExportComments returns standard HTTP errors when possible.

Objects

There is one primary type of object that the ExportComments API operates with.

Export

This object represents an instance of export that was run with a given set of parameters. It has the following properties:

PropertyDescription
urlThe url that this export was sterted on.
guidA globally unique id representing this export
statusThe status of the export. It can be queueing, requeuing, progress, done, error
repliesWehther export is with nested included
repliesCountNumber of nested comments exported
createdAtThe time that this export was started at, in UTC +0000.
exportedAtThe time that this export was stopped. This field will be null if the export is not done. Time is in UTC +0000.
errorWhether the export have problems
totalThe number of comments available
totalExportedThe number of comments that have been exported this run.
downloadUrlThe relative url for this export ready to download
rawUrlThe relative url with JSON-stringified representation of all comments for this export

Methods

This section describes all of the HTTP endpoints that can be used to manipulate exports.

The typical way to use the ExportComments API is the following:

  • Start an export

    This is done using the PUT /api/v2/export method below

  • Wait for the export to finish

    You can use one of:
    1. Webhooks (recommended)
    2. Polling the GET /api/v2/export/{UUID} method below. Note there are rate limits on this method.

  • Get the data from the export

    Once the export status is done, you can download the data from either the ExportComments website or API.

Exports

Everything about your exports

GET​/export
Retrieves the export by unique id.
PUT​/export
Create an export process
GET​/exports​/me
Retrieves the collection of comments owned by your account

Models

Export Structure
ApiResponse