API Launch: Competitor Signals Where Your Team Already Works

The Meertrack API is now live. Pipe competitor pricing changes, exec hires, and weekly digests into Slack, your CRM, or a Google Sheet. Trial keys included.

Nathan Martin
API Launch: Competitor Signals Where Your Team Already Works

The Meertrack API is now live. Every signal we already track (competitor pricing changes, exec hires, product launches, blog posts, messaging shifts) can now flow straight into the tools your team already opens: Slack, your CRM, the Google Sheet your CEO opens on Monday, or anywhere else a webhook can reach.

Any user, paid or trial, can mint a key in Settings → API Keys. The full reference lives at meertrack.com/developers/api.

Why we built it

We kept hearing the same thing from early customers. The signal landed in Meertrack on time, and then someone had to re-type it into a deal note, paste it into a battlecard, or summarize it in a Monday update. Getting the right signal to the right person still took manual work.

The API closes that loop. The activity feed, the weekly digests, and the competitor metadata are now available the same way the web app reads them, so the signal shows up wherever your team already makes decisions.

Pipe new competitor hires into the sales Slack channel

Hiring is the cleanest leading indicator we track. When a competitor posts an enterprise account executive, a sales engineer, and a SOC 2 lead in the same quarter, an enterprise tier is on the way. Your sales team should hear about that the day the listing goes up, not three weeks later when a prospect mentions it on a call.

The pattern is short. Poll the activity feed, filter for the job-listings section, send each new row to a Slack webhook. Set up a five-minute cron job, point it at one Slack channel, and every rep sees each new hire as it goes up:

const feed = await fetch("https://api.meertrack.com/v1/activity?section=job-listings", {
  headers: { Authorization: `Bearer ${process.env.MEERTRACK_API_KEY}` },
});
for (const row of (await feed.json()).data) {
  await postToSlack(`${row.competitor.name} just opened: ${row.data.title}`);
}

The full reference covers pagination, the retry contract, and the other sections you can filter on (pricing-pages, blog-posts, product-updates, leadership). Start with one section and add more once you have tuned the Slack noise level.

Append the weekly digest to your team's Google Sheet

Heads of competitive intelligence ask for this more than anything else. The spreadsheet is where the rest of the org's competitor history already lives, and the longer that history stays in one place, the more useful it gets for pattern-spotting six months out.

/digests/latest returns one weekly digest per active competitor, with an executive summary, themes, and tags. Pull it once a week, append each new digest as a row, dedupe by digest ID:

digests = requests.get(
    "https://api.meertrack.com/v1/digests/latest",
    headers={"Authorization": f"Bearer {os.environ['MEERTRACK_API_KEY']}"},
).json()["data"]
for d in digests:
    sheet.append_row([d["id"], d["competitor"]["name"], d["summary"]["executive_summary"]])

The same shape runs against Notion, Airtable, BigQuery, or a Postgres table. Pick the tool your team already uses and competitor history accumulates there automatically.

What else customers are building

A few of the integrations early-access teams stood up in the last month:

  • HubSpot and Salesforce deal annotations when a competitor on an open opportunity ships a pricing change
  • Notion pages that auto-update with each competitor's latest digest
  • Discord alerts for community managers tracking competitor product launches
  • BigQuery loads so analytics teams can join competitor activity against their own pipeline data

If you build something we have not thought of, send it to nathan@meertrack.com.

Included on every plan

The API is part of the $19 per competitor per month plan (currently $14.25 with the launch promo). No separate tier for API access, no per-call billing, no overage charges, and no demo call to get a key.

Trial users get a real key on day one. The 14-day trial covers up to 3 competitors, and the trial key has the same endpoints and the same rate limits as a paid key. Build against it, evaluate it, and if it does not fit, the trial expires and we never ask for a card.

Get a key

Sign in (or start a 14-day trial), open Settings → API Keys, and mint one. Point one of the examples above at it and a competitor signal will be flowing into your destination within the hour. The full reference is at meertrack.com/developers/api.

You run the business.

We'll watch the competition.

14 days free. 3 competitors. Cancel anytime.