Rollbar website screenshot

Rollbar

Rollbar is a real-time error tracking and monitoring platform for software teams. It automatically captures exceptions and errors from web, mobile, and server-side applications, groups them by root cause, and provides actionable alerts to speed up debugging. Rollbar provides SDKs for over a dozen platforms including JavaScript, Python, PHP, Ruby, Go, Swift, .NET, and Java. The REST API enables programmatic management of projects, items, occurrences, deployments, teams, notifications, and source maps. The RQL (Rollbar Query Language) provides SQL-like queries for error analysis.

5 APIs 16 Features
Error TrackingMonitoringDebuggingDevOpsApplication Performance

APIs

Rollbar REST API

The Rollbar REST API provides programmatic access to the Rollbar error tracking and monitoring platform. Manage projects, items, occurrences, deploys, teams, users, invites, not...

Rollbar Deployment API

The Rollbar Deployment API allows developers to notify Rollbar of application deployments and releases. By reporting deploys, teams can correlate error spikes with specific rele...

Rollbar Metrics API

The Rollbar Metrics API is part of Rollbar Analyze and provides programmatic access to metrics data for error tracking analysis and discovery. Enables developers to query resolu...

Rollbar RQL API

The Rollbar RQL (Rollbar Query Language) API provides a SQL-like interface for querying error and deployment data stored in Rollbar. Supports SELECT queries against item_occurre...

Rollbar Webhooks

Rollbar supports outbound webhook notifications for real-time event-driven integrations. Webhooks deliver payload data when errors occur, items are resolved, or deployment event...

Collections

Pricing Plans

Rollbar Plans Pricing

4 plans

PLANS

Rate Limits

Rollbar Rate Limits

3 limits

RATE LIMITS

FinOps

Features

Free: 5K occurrences + 1K replays/month
Essentials: 10K-50M occurrences/mo, 4K credits, 90-day retention
Advanced: 8K credits, adaptive alerts, RQL/Metrics API, SCIM, 180-day retention
Enterprise: 80M+ occurrences, Slack channel, custom retention, priority SLAs
Real-time feed and alerts
Intelligent error grouping (RQL)
Stack traces with source maps and breadcrumbs
Deploy and version tracking
Item ingest tier-based limit
REST API: 5,000 req/min (read)
Bulk Resolve API: 1,000 items/request
Webhooks for new items, deploys, occurrences
OAuth 2.0 + project tokens
30+ language SDKs
Adaptive alerts on Advanced+
RQL (Rollbar Query Language) for advanced querying

Event Specifications

Rollbar Webhook Events

Rollbar's webhook notification system delivers real-time event notifications to configured endpoints when errors, deployments, and other significant events occur. Webhooks are t...

ASYNCAPI

Semantic Vocabularies

Rollbar Context

0 classes · 8 properties

JSON-LD

API Governance Rules

Rollbar API Rules

10 rules · 3 errors 6 warnings 1 info

SPECTRAL

JSON Structure

Rollbar Item Structure

0 properties

JSON STRUCTURE

Example Payloads

Rollbar Create Item Example

5 fields

EXAMPLE

Rollbar List Items Example

5 fields

EXAMPLE

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Documentation
Documentation
🌐
Portal
Portal
💰
Pricing
Pricing
👥
GitHubOrganization
GitHubOrganization
📜
TermsOfService
TermsOfService
📜
PrivacyPolicy
PrivacyPolicy
💬
Support
Support
🔗
OpenAPI
OpenAPI
🔗
OpenAPI
OpenAPI
🔗
OpenAPI
OpenAPI
🔗
OpenAPI
OpenAPI
🔗
AsyncAPI
AsyncAPI
🔗
JSONSchema
JSONSchema
🔗
JSONSchema
JSONSchema
🔗
JSONSchema
JSONSchema
🔗
JSONSchema
JSONSchema
🔗
JSONLDContext
JSONLDContext
🔗
MCPServer
MCPServer
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Rollbar RQL API
  version: '1'
request:
  auth:
    type: apikey
    key: X-Rollbar-Access-Token
    value: '{{X-Rollbar-Access-Token}}'
    placement: header
items:
- info:
    name: RQL Jobs
    type: folder
  items:
  - info:
      name: List All RQL Jobs
      type: http
    http:
      method: GET
      url: https://api.rollbar.com/api/1/rql/jobs/
    docs: Returns all RQL jobs for the project, including their status and query details.
  - info:
      name: Create an RQL Job
      type: http
    http:
      method: POST
      url: https://api.rollbar.com/api/1/rql/jobs/
      body:
        type: json
        data: '{}'
    docs: Submits a new RQL query as a job. The query uses a SQL-like syntax and can query the item_occurrence and deploy
      logical tables. Jobs run asynchronously and will timeout after 10 minutes.
  - info:
      name: Get an RQL Job
      type: http
    http:
      method: GET
      url: https://api.rollbar.com/api/1/rql/job/:jobId
      params:
      - name: jobId
        value: ''
        type: path
        description: The unique ID of the RQL job.
    docs: Returns information about a specific RQL job, including its current status and query details.
  - info:
      name: Get RQL Job Results
      type: http
    http:
      method: GET
      url: https://api.rollbar.com/api/1/rql/job/:jobId/result
      params:
      - name: jobId
        value: ''
        type: path
        description: The unique ID of the RQL job.
    docs: Returns the results of a completed RQL job. The job must be in the success status. Results include column definitions
      and rows of data matching the query.
bundled: true