Skip to main content

Discover Subscriptions

Most people underestimate how many recurring relationships they have. Subscriberbot finds them for you, and helps you discover new ones intentionally.

Two kinds of discovery

1. Finding what you already have

The Discovery Agent scans connected sources — email, subscription payments, and linked accounts — and uses AI to identify every recurring relationship: newsletters, SaaS tools, AI services, memberships, insurance, telecom, utilities, and more. Each finding becomes a Relationship node in your graph.

query {
subListRelationships(filter: { status: ACTIVE }) {
provider { name category }
detectedFrom # "email-receipt" | "payment" | "account-link"
estimatedCost
}
}

You confirm or dismiss each discovery; confirmed ones join your active graph.

2. Finding something new

The Subscription Search Engine is a "Google for subscriptions" — search AI tools, SaaS, communities, newsletters, and courses, and filter by:

  • cost
  • region
  • language
  • industry
  • reviews
  • integrations
query {
subSearchProviders(
query: "ai writing assistant",
filter: { maxMonthlyPrice: 20, minRating: 4.0, region: "IN" }
) {
name
plans { name price interval }
rating
alternatives { name price }
}
}

The Discovery Marketplace

Search results sit inside a Discovery Marketplace that blends sponsored and organic discovery with recommendation feeds, AI recommendations, and "similar products" — all grounded in the Subscription Knowledge Graph so recommendations reflect real pricing, features, and sentiment.

Next

Environment selection

Discovery and search target production by default. For local development, set BURDENOFF_ENV=local to use local gateways and seed data. See Environment Selection for endpoint details.