Find an API

Search public APIs with auth details & Postman guides

← All APIs

Rumble API (deprecated)

rumble · Analytics

Analytics No Auth Free & Open monitoring

Rumble Network Discovery is now runZero. Read the announcement . This API is frozen and no longer being updated as of version 2.15.0. See our latest API documentation at swaggerhub.com/apis-docs/runZero/runZero .

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get all agents across all organizations

Get all agents across all organizations

https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/agents?search=hello

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/agents?search=hello"
import requests
params = {
    "search": "hello"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/agents",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/agents');
url.searchParams.set('search', 'hello');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/agents")
	q := baseURL.Query()
	q.Set("search", "hello")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/agents")
uri.query = URI.encode_www_form({
  "search" => "hello"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/agents?" . http_build_query([
    "search" => "hello"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get all account credentials

Get all account credentials

https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/credentials?search=hello

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/credentials?search=hello"
import requests
params = {
    "search": "hello"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/credentials",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/credentials');
url.searchParams.set('search', 'hello');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/credentials")
	q := baseURL.Query()
	q.Set("search", "hello")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/credentials")
uri.query = URI.encode_www_form({
  "search" => "hello"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/credentials?" . http_build_query([
    "search" => "hello"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET System event log as JSON

System event log as JSON

https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/events.json?fields=example&search=hello

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/events.json?fields=example&search=hello"
import requests
params = {
    "fields": "example",
    "search": "hello"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/events.json",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/events.json');
url.searchParams.set('fields', 'example');
url.searchParams.set('search', 'hello');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/events.json")
	q := baseURL.Query()
	q.Set("fields", "example")
	q.Set("search", "hello")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/events.json")
uri.query = URI.encode_www_form({
  "fields" => "example",
  "search" => "hello"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/rumble.run/2.15.0/account/events.json?" . http_build_query([
    "fields" => "example",
    "search" => "hello"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Rumble API (deprecated)?

Rumble API (deprecated) is a Analytics API. Developers commonly use analytics APIs for:

  • tracking product usage and user behaviour
  • building custom reporting and BI dashboards
  • measuring marketing and campaign performance
  • running funnel, retention, and cohort analysis
  • aggregating metrics from multiple data sources

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Rumble API (deprecated) is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗