Reputraq API

Integrate real-time reputation monitoring and sentiment analysis into your applications with our comprehensive REST API.

RESTful API

Standard REST endpoints with JSON responses for easy integration.

Real-time Webhooks

Receive instant notifications when reputation events occur.

Enterprise Security

OAuth 2.0 authentication with rate limiting and IP whitelisting.

Quick Start

// Get your API key from dashboard
const API_KEY = 'your-api-key-here';
const BASE_URL = 'https://api.reputraq.com/v1';

// Fetch reputation insights
const response = await fetch(`${BASE_URL}/insights`, {
  headers: {
    'Authorization': `Bearer ${API_KEY}`,
    'Content-Type': 'application/json'
  }
});

const data = await response.json();
console.log(data);

Get started in minutes with our comprehensive API documentation and code examples.

Core Endpoints

GET/v1/insights

Retrieve reputation insights and sentiment analysis for your brand.

Returns: JSON object with sentiment scores, mentions, and trends.

POST/v1/alerts

Create custom alert rules for reputation monitoring.

Accepts: Alert configuration with keywords, thresholds, and notification settings.

GET/v1/mentions

Search and filter brand mentions across all monitored channels.

Supports: Date ranges, sentiment filters, source types, and pagination.

GET/v1/competitors

Compare your brand reputation against competitors.

Returns: Comparative analysis with sentiment trends and market share.

Full Documentation

Explore our complete API reference with detailed examples, authentication guides, and best practices.