Build custom integrations with our REST API for commenting, moderation, analytics, and more.
Get Started with API →Test endpoints instantly with our interactive playground:
GET https://api.disqus.com/api/threads/list.json?api_key=YOUR_KEY...
Use API key authentication with your Developer API key:
curl -H "Api-Key: YOUR_PUBLIC_KEY" -H "Api-Secret: YOUR_SECRET_KEY" ...
GET /api/comments/list.json
{
"thread": 12345,
"limit": 20,
"since": "2025-01-01"
}
POST /api/comments/create.json
{
"thread": 12345,
"message": "Hello community!",
"author": 67890
}
Node.js and browser-based applications
npm install disqus-sdk-js
Python applications and scripts
pip install disqus-python
PHP applications and integrations
composer require disqus/sdk-php
Our API makes it easy to create custom comment moderation tools, analytics dashboards, and more.
View API Tutorials →