Skip to main content

Quickstart (Data Feeds)

This guide gets you connected to RevenueBase data feeds so you can query tables and join data.

Step 1: Enable data feeds access

  1. Sign in to the RevenueBase dashboard.
  2. Ensure your plan includes Data Feeds.
  3. Note your feed credentials (host, database, and auth) from SettingsData Feeds.

Step 2: Connect your client

Use the connection details from the dashboard. Example (replace placeholders with your values):
# Example: connect via provided client or JDBC/ODBC
# Host: feed.revenuebase.ai
# Port: 443
# Database: your_database
# Auth: your_feed_username / your_feed_password
Credentials are unique per account. Do not share them or commit them to version control.

Step 3: Run a sample query

Once connected, try a simple query against a core table (see Tables & Schema for exact table names):
SELECT * FROM companies LIMIT 10;

Next steps