SuprSend
Notification infrastructure that treats batching, preferences, and timezones as first-class problems
SuprSend is a notification infrastructure platform that sits between your application and your delivery providers, orchestrating product and lifecycle notifications across email, SMS, WhatsApp, mobile and web push, Slack, Microsoft Teams, in-app inbox, and webhooks from a single workflow, with batching and digest, user preference management, timezone-aware delivery, and drop-in inbox components, priced from a free 10,000 notifications a month up to $275 a month at the Business tier.
Overview
SuprSend belongs to the newer class of tools that answered a question every growing product eventually asks: who owns notifications. Not marketing email, not transactional receipts, but the sprawl in between. Somebody mentioned you, your invoice failed, three people commented on your document, your export is ready. That work is usually spread across a dozen code paths, each with its own template string, its own provider call, and its own bug where a user gets forty emails in a minute. SuprSend consolidates it into one workflow engine with one API call per event.
It is unambiguously event-driven. You trigger a workflow from your application with a payload, and the workflow decides which channels fire, in what order, after what delay, batched with what else, and subject to which preferences. That means it needs engineering to adopt: somebody has to instrument the trigger points, model users and objects, and configure providers. Once that is done, templates and workflow logic become editable in the dashboard, so a product manager or a designer can change what a notification says without a deployment, which is the actual payoff.
The features that distinguish it from a plain fan-out API are the ones that only matter once you have real users. Batching and digest collapse forty comment notifications into one summary. Wait Until pauses a sequence pending a user action, so the email only sends if the in-app notification was not read. Timezone-aware delivery means a daily digest lands at nine in the morning wherever the recipient lives. Smart channel routing tries the cheap channel first. Multi-tenancy lets a B2B product give each customer organisation its own branding and rules. Those are exactly the capabilities teams build badly by hand.
Founded in January 2022 by Nikita Navral and Gaurav Verma, with a $1 million seed round led by BoldCap alongside Titan Capital, FortyTwo.VC, and All In Capital, SuprSend is a small, focused company reporting more than 100 million notifications processed monthly. The pricing meter is notifications triggered, which is worth understanding precisely: a message to one user on one channel is one notification, so a workflow hitting email and push for the same person counts twice, while a batched digest counts once regardless of how many events it summarises.
Best for
Product and engineering teams at B2B or B2C software companies who have outgrown scattered notification code, need batching, preference management, and an in-app inbox done properly, and want one workflow layer over the email, SMS, push, and chat providers they already pay for.
Not the right fit for
- Marketing teams looking for a campaign tool; SuprSend has lists and broadcasts but no landing pages, no forms, no lead scoring, and no campaign reporting, and a marketer cannot adopt it without engineering.
- Teams with no developer capacity at all, because nothing works until somebody instruments trigger points and configures providers, and no amount of dashboard polish removes that prerequisite.
- Very small products with simple notification needs; if one transactional email per signup is your entire requirement, an ESP API is cheaper and simpler and you do not need an orchestration layer.
- Buyers who want their delivery included in the price; SuprSend orchestrates but you still pay your email, SMS, and WhatsApp providers separately, so the platform fee sits on top of your existing bills.
- Companies that need batching, user preferences, and object-based data modelling on a small budget, because all three are gated to the $275 Business tier rather than the $110 Essentials tier.
How it works
- 1
You identify users and, on higher tiers, objects such as teams, projects, or documents, giving SuprSend the recipient data and channel identifiers it needs. Provider credentials for your existing email, SMS, and push vendors are configured once in the dashboard.
- 2
Your application triggers a workflow with an event name and a payload, usually one API call or SDK method at the point in the code where something notable happened. Everything downstream of that call is configuration rather than code.
- 3
The workflow runs the orchestration: branching on payload or user attributes, delays, Wait Until conditions that pause pending a user action, batching that collapses a burst of events into one digest, timezone-aware scheduling, and smart channel routing that tries channels in a defined order. Preferences are enforced at this layer, so a user who has muted a category never receives that notification regardless of what your code did.
- 4
Delivery goes out through your own configured providers, so you keep your sending reputation, your existing contracts, and your per-message rates. The in-app channel is served by SuprSend's own inbox infrastructure with drop-in components for React, Angular, Vue, Next.js, React Native, Android, iOS, and Flutter.
Feature breakdown
29 features in 5 modulesWorkflow orchestration
The engine, and the part that justifies buying rather than building.- Single-trigger workflows
- One API call from your application starts a workflow that decides channels, ordering, timing, and suppression, so notification logic leaves your codebase and becomes configuration.
- Branching and conditions
- Conditional paths based on payload values or recipient attributes, available even on the free tier, so a single workflow can serve several user types.
- Wait Until
- Pauses a sequence pending a user action or inaction, which is how you build the correct pattern of sending in-app first and escalating to email only if it was not read.
- Batching and digest
- Collapses a burst of events into one summary message, which is the single most requested notification feature and the hardest to build correctly. Business tier and above.
- Timezone-aware delivery
- Sends in the recipient's local time rather than yours, so a daily digest arrives at a sensible hour globally. Available from the Essentials tier.
- Smart channel routing
- Routes across channels in a defined order with fallbacks, so a cheap channel is tried before an expensive one and a failed delivery escalates rather than disappearing.
- Agent node
- A workflow step that hands a decision to an AI agent at runtime, which is a newer and less proven capability but points at where this category is heading.
Channels and delivery
Bring your own providers, keep your own reputation.- Nine channels from one workflow
- Email, SMS, WhatsApp, mobile push, web push, Slack, Microsoft Teams, in-app inbox and toasts, and webhooks, all available on every plan including free.
- Bring your own delivery vendors
- You connect your existing email, SMS, and push providers, so sending reputation, contracts, and per-message rates stay yours. SuprSend charges for orchestration, not for delivery.
- In-app inbox components
- Drop-in notification feed components for React, Angular, Vue, Next.js, React Native, Android, iOS, and Flutter, with read and unread state, tabs, filters, and cross-device sync. Free tier carries SuprSend branding; Essentials removes it.
- Toasts and real-time updates
- In-product toast notifications alongside the persistent feed, driven by the same workflow rather than a separate code path.
- Provider failover
- Multiple vendors can be configured per channel with routing between them, so an outage at one provider does not stop notifications entirely.
Recipients, preferences, and data
The modelling layer that decides how far the product scales with your application.- Preference centre
- Granular per-user control over categories, channels, and frequency, enforced in the workflow engine rather than in your code, with hosted preference pages available. Business tier.
- Object data modelling
- Model non-user entities such as teams, projects, or documents as notification subscribers, which is what B2B collaboration products actually need. Business tier.
- Multi-tenancy
- Per-tenant branding, templates, and rules so a B2B platform can give each customer organisation its own notification behaviour. Enterprise tier.
- Lists and broadcasts
- One-to-many sends to a defined list, available on every plan including free, which covers announcement and product-update use cases without a marketing tool.
- Translation and internationalisation
- Per-locale template variants from the Essentials tier, so notification copy follows the recipient's language.
- Log sync to Segment or a warehouse
- Notification logs can be pushed to Segment or a data warehouse from the Business tier, which is how notification data joins the rest of your analytics rather than living in a vendor dashboard.
Developer surface and AI
Aimed squarely at engineers, with an unusually current AI story.- SDKs across major languages and platforms
- Backend SDKs for the common server languages plus frontend components across web and mobile frameworks.
- REST API
- Full API for triggering workflows, managing users and objects, updating preferences, and reading delivery logs.
- CLI for deployments and testing
- Command line tooling so workflows and templates can be versioned and promoted between environments rather than edited only in a dashboard.
- MCP server
- A Model Context Protocol endpoint that lets Claude and other MCP clients inspect and manage notification configuration in natural language, which is a genuinely useful debugging surface.
- Agent SDK
- Tooling for building AI agents that send and manage notifications programmatically.
- AI template and workflow generation
- Generates templates and workflow structures from prompts, plus an in-product assistant for configuration questions.
Enterprise, security, and deployment
The self-hosting and residency story is real but gated entirely to Enterprise.- Self-hosted deployment
- Available on the Enterprise tier for teams that cannot send notification data to a vendor's cloud at all.
- Bring Your Own Cloud
- A beta deployment model running SuprSend inside your own virtual private cloud, aimed specifically at data residency and compliance constraints.
- SAML 2.0 single sign-on
- Enterprise tier, alongside role-based access control and an audit trail.
- HIPAA and business associate agreements
- Available on Enterprise for healthcare products that route protected information through notifications.
- Multi-region data centres and dedicated infrastructure
- Enterprise options for latency and residency requirements, with published 99.9 percent uptime on the standard cloud.
Use cases
4 documentedB2B collaboration product drowning in comment notifications
A busy document generates forty mentions in ten minutes and every one sends an email, so users mute notifications entirely and then complain they missed something important.
Batching collapses the burst into one digest, Wait Until suppresses the email when the in-app notification was already read, and per-category preferences let users tune rather than mute.
Fintech product with regulatory and operational alerts
Payment failures, security events, and limit warnings are scattered across services, each with its own provider call and template, and nobody can audit what was sent.
One workflow per event type with channel fallback and full delivery logs, and log sync into the warehouse so the audit question has an answer in SQL rather than a support ticket.
Engineering team asked to add an in-app inbox
The product needs a notification bell with read state, cross-device sync, and infinite scroll, which is a two-month project nobody wants to own or maintain.
A drop-in component and a workflow trigger deliver it in days, and the free tier at 10,000 notifications a month is enough to prove it before any spend.
SaaS platform serving enterprise customers with their own rules
Each customer organisation wants its own branding, its own quiet hours, and its own channel policy, and hard-coding that is untenable.
Multi-tenant data modelling on the Enterprise tier makes tenant configuration a data problem rather than a code problem, with per-tenant templates and rules.
Pricing
from $0 (Free), then $110 per month (Essentials)Tiered subscription metered on notifications triggered, where one notification is one message to one recipient on one channel and a batched digest counts once. Annual billing saves roughly 10 percent. Enterprise offers an alternative monthly tracked user model.
| Plan | Price | Includes |
|---|---|---|
| Free | $0 per month |
No credit card required, and generous enough to run a small product in production. |
| Essentials | $110 per month |
$100 per month billed annually at $1,200. No batching, no preference centre, no object modelling. |
| Business | $275 per month |
$250 per month billed annually at $3,000. Note that the included volume is the same as Essentials and the overage rate is higher; you are paying for capability, not headroom. |
| Enterprise | Custom quoted |
|
Billing notes
- One notification is one message to one recipient on one channel, so a workflow that sends email and push to the same person consumes two. A batched digest consumes one regardless of how many underlying events it summarises, which makes batching a cost control as well as a user experience feature.
- Essentials and Business both include 50,000 notifications, so the Business upgrade buys features rather than volume, and its overage rate is $5 per 1,000 against Essentials' $2.
- Delivery costs are not included. You pay your own email, SMS, WhatsApp, and push providers separately, which is good for control and means the platform fee sits on top of an existing bill.
- Annual billing saves roughly 10 percent, at $1,200 for Essentials and $3,000 for Business.
- New accounts get all premium features for 30 days before downgrading to Free, which is enough time to evaluate batching and preferences properly before committing to the Business tier.
- Self-hosting, Bring Your Own Cloud, SSO, audit logging, and multi-tenancy are all Enterprise-only and quoted.
Value assessment: Modelled for a product with 5,000 users, notification volume rather than user count is what matters, and most products at that size sit inside the free 10,000 a month or just above it, so realistic spend is $0 to $110. At 50,000 users you are likely into six-figure monthly notification volumes, which means Business at $275 plus overages at $5 per 1,000, so a product sending 200,000 notifications a month lands around $1,025. That is expensive relative to raw sending, but the comparison is not against an ESP bill, it is against the engineering cost of building batching, preferences, an inbox, and channel fallback and then maintaining them. Two engineer-weeks a year of avoided maintenance covers the Business tier. The awkward part of the pricing is that batching and preferences, the two features that most justify buying the category at all, sit behind the $275 tier while the $110 tier gets neither.
Strengths & limitations
Strengths
- Batching and digest, Wait Until, and timezone-aware delivery are the three hardest notification problems to build correctly and SuprSend treats all three as core rather than as roadmap items.
- Bring your own delivery vendors means you keep your sending reputation, your existing provider contracts, and your per-message pricing, and the platform fee is honestly separated from delivery cost.
- Nine channels including WhatsApp, Slack, and Microsoft Teams are available on every plan including free, rather than being gated as premium channels.
- The free tier at 10,000 notifications a month with unlimited channels and unlimited team members is genuinely enough to run a small product in production.
- Object data modelling and multi-tenancy address the B2B notification problem specifically, which most competitors in this space handle poorly or not at all.
- An unusually current developer surface: CLI-based environment promotion, an MCP server, and an Agent SDK, rather than an API and a dashboard.
- Enterprise self-hosting and Bring Your Own Cloud give a real answer to data residency without abandoning the product.
Limitations
- Batching, digest, user preferences, and object modelling are all gated to the $275 Business tier, which is the single most questionable packaging decision in the product.
- Essentials and Business include identical notification volume, and Business has a worse overage rate, so the upgrade is purely for features and the pricing page does not make that obvious.
- Adoption requires engineering: trigger instrumentation, user and object modelling, and provider configuration all come before a marketer or product manager can touch anything.
- Delivery costs sit outside the subscription, so the true monthly cost is the platform fee plus your ESP, SMS, and WhatsApp bills, and buyers comparing against all-in tools underestimate it.
- Self-hosting, single sign-on, audit logging, role-based access control, and multi-tenancy are all Enterprise-only, which is a long list for a mid-market team to be told to call sales about.
- A small company on roughly $1 million of seed funding raised in 2022, which is a thin capital base for infrastructure sitting in a critical path.
- There is no campaign, list-building, or marketing reporting layer, so this cannot replace a marketing automation platform even though it shares the category.
Head-to-head comparisons
6 alternativesSuprSend vs Knock
from $0 (Developer), then $250 per month (Starter)Knock is the closest direct competitor and the more established one, with a similar workflow-plus-inbox model and a strong developer experience. SuprSend competes on breadth of included channels, object and multi-tenant data modelling, and a lower free-tier barrier. Knock is the safer institutional choice; SuprSend is the better value if batching, preferences, and WhatsApp or Teams delivery are on your list.
Full SuprSend vs Knock comparisonSuprSend vs Novu
from $0 (Free or self-hosted), then $30 per month (Pro)Novu is open source and self-hostable from day one at no licence cost, which SuprSend reserves for its Enterprise tier. If your team wants to own the infrastructure or has a hard residency constraint on a small budget, Novu is the obvious answer. SuprSend is the managed alternative with more mature batching, preference, and multi-tenancy handling and no cluster for you to operate.
Full SuprSend vs Novu comparisonSuprSend vs Courier
from $0 (Developer, 10,000 sends per month), then $0.005 per sendCourier pioneered the multi-channel routing API and has a broader provider catalogue and a more marketing-friendly template studio. SuprSend is more opinionated about the hard parts, particularly batching, Wait Until, and object-based subscribers. Choose Courier for provider breadth and template collaboration; choose SuprSend when the notification problem is volume and fatigue rather than routing.
Full SuprSend vs Courier comparisonSuprSend vs Engagespot
from $0 (Launch), then $250 per month (Growth)Engagespot is cheaper at volume: $250 a month for 250,000 event triggers against SuprSend's $275 for 50,000 notifications, and its meter counts one trigger regardless of how many channels fire. SuprSend has the deeper feature set, particularly batching, object modelling, and preference management. If raw volume economics decide it, Engagespot wins clearly; if notification fatigue is the problem you are solving, SuprSend is the better engine.
Full SuprSend vs Engagespot comparisonSuprSend vs MagicBell
from $0 (Builder), then $249 per month (Startup)MagicBell is inbox-first with an excellent embeddable notification centre and a $249 Startup tier at 50,000 deliveries. SuprSend is orchestration-first with the inbox as one channel among nine. If you need a beautiful notification bell above all else, MagicBell is more focused; if the inbox is one part of a multi-channel problem involving batching and preferences, SuprSend covers more ground for roughly the same money.
Full SuprSend vs MagicBell comparisonSuprSend vs Plunk
from $0 (free tier), then $0.001 per emailPlunk is an email platform at $0.001 per email with self-hosting available, solving a completely different problem: cheap programmable email with campaigns and workflows. SuprSend does no delivery at all and orchestrates across nine channels. A team could reasonably use both, with Plunk as the email provider SuprSend routes through, which is the honest relationship between them.
Full SuprSend vs Plunk comparisonImplementation & onboarding
- Setup time
- A day to trigger a first workflow and drop the inbox component into a React app. Two to four weeks for a full migration of scattered notification code, most of which is finding all the places your codebase currently sends something.
- Learning curve
- Moderate for engineers, who need to understand the user, object, workflow, and preference model before the design decisions make sense. Low afterwards for non-engineers, since template and copy changes happen in the dashboard without a deployment, which is the main organisational benefit.
- Onboarding
- Entirely self-serve with no credit card required, and all premium features unlocked for 30 days so batching and preferences can be evaluated before committing to the Business tier. Enterprise deployments including self-hosting and Bring Your Own Cloud are sales-led.
- Migration notes
- Provider credentials move across unchanged because SuprSend routes through your existing vendors, so there is no deliverability migration and no domain warm-up. The real work is inventorying every place your application currently sends a notification and replacing each with a workflow trigger. Run both paths in parallel for a release or two, and use the CLI to promote workflows between environments rather than reconfiguring by hand.
Platform, API & security
- Platforms
- REST API and backend SDKsReact, Angular, Vue, and Next.js inbox componentsReact Native, Android, iOS, and Flutter SDKsCLI for environment promotionMCP server
- API
- Full REST API covering workflow triggers, users, objects, preferences, lists, and delivery logs, with SDKs across major backend languages, frontend components across web and mobile, a CLI for deployment and testing, and an MCP server for AI-assisted configuration.
- Compliance
- SOC 2 posture published by the vendorGDPRHIPAA with a business associate agreement on Enterprise
- Data residency
- Standard cloud plus Enterprise options for multi-region data centres, dedicated infrastructure, self-hosted deployment, and a Bring Your Own Cloud model in beta for customers who need processing inside their own VPC.
- SSO
- SAML 2.0 single sign-on on the Enterprise tier.
- Security notes
- Role-based access control and audit trail are Enterprise features. Published uptime of 99.9 percent on the standard cloud, with more than 100 million notifications processed monthly. Because delivery runs through your own providers, message content passes through SuprSend but sending credentials and reputation remain under your control.
Support & resources
- Channels
- Email support on paid plansIn-product AI assistantDedicated enterprise support with SLAs on the Enterprise tier
- Documentation
- Developer documentation covering workflows, data modelling, preferences, channel configuration, SDK references, and the CLI.
- Community
- Developer-focused presence rather than a large forum; the vendor invests in documentation and technical content.
Company
- Founded
- 2022
- Headquarters
- San Francisco, United States, with engineering in Bengaluru, India
- Ownership
- Venture-backed
- Founders
- Nikita Navral, Gaurav Verma
- Employees
- Not disclosed; a small team
- Funding
- Approximately $1M raised in a 2022 seed round led by BoldCap, with Titan Capital, FortyTwo.VC, and All In Capital participating.
Funding history
| Round | Amount | Year | Notes |
|---|---|---|---|
| Seed | $1M | 2022 | Led by BoldCap with Titan Capital, FortyTwo.VC, and All In Capital. |
Timeline
- 2022Founded in January by Nikita Navral and Gaurav Verma to consolidate scattered product notification code into one workflow layer.
- 2022Raises a $1 million seed round led by BoldCap with Titan Capital, FortyTwo.VC, and All In Capital participating.
- 2023Ships drop-in in-app inbox components across React and mobile frameworks, alongside batching and digest for notification fatigue.
- 2024Adds object data modelling and multi-tenancy for B2B products, plus preference management enforced in the workflow engine.
- 2025Introduces the CLI for environment promotion, log sync to Segment and data warehouses, and Bring Your Own Cloud deployment in beta.
- 2026Adds an MCP server, an Agent SDK, and AI-assisted template and workflow generation, and reports processing more than 100 million notifications monthly.
Integrations
- Email providers including SendGrid, Amazon SES, Postmark, and Mailgun
- SMS providers including Twilio, Plivo, and MessageBird
- WhatsApp Business providers
- Firebase Cloud Messaging and Apple Push Notification service
- Web push providers
- Slack
- Microsoft Teams
- Segment
- Data warehouses for notification log sync
- Webhooks and REST API
- MCP clients including Claude
Frequently asked questions
10 questionsWhat is SuprSend?
SuprSend is notification infrastructure. It sits between your application and your delivery providers, taking one workflow trigger from your code and orchestrating messages across email, SMS, WhatsApp, mobile and web push, Slack, Microsoft Teams, an in-app inbox, and webhooks, with batching, user preferences, timezone-aware delivery, and channel fallback handled in the platform rather than in your codebase.
How much does SuprSend cost?
Free covers 10,000 notifications a month with unlimited channels and team members. Essentials is $110 a month, or $100 billed annually at $1,200, for 50,000 notifications with $2 per additional 1,000. Business is $275 a month, or $250 billed annually at $3,000, also for 50,000 notifications but with $5 per additional 1,000, adding batching, preferences, and object modelling. Enterprise is quoted.
Is SuprSend event-driven or list-driven?
Event-driven, entirely. Your application triggers a workflow with a payload at the moment something happens, and everything downstream is orchestration. There are lists and broadcasts for announcements, but the core model is a real-time event stream from your product. That means you cannot adopt it without engineering work, which is the trade the whole category makes.
How does the notification meter work at 5,000 and 50,000 users?
The meter counts notifications, not users, so what matters is how chatty your product is. One message to one recipient on one channel is one notification, and a workflow sending both email and push to the same person consumes two. A product with 5,000 users typically sits inside the free 10,000 a month or just above, so $0 to $110. A product with 50,000 users sending four notifications each per month is 200,000, which on the Business tier is $275 plus $5 per 1,000 for the 150,000 overage, roughly $1,025 a month. Batching is your main cost lever, because a digest counts once regardless of how many events it summarises.
Do I bring my own email and SMS providers?
Yes, and this is one of the better things about the product. You configure your own SendGrid, Amazon SES, Twilio, or equivalent credentials, so sending reputation, provider contracts, and per-message rates stay yours. SuprSend charges for orchestration only. The corollary is that the subscription is not your total cost: your delivery bills sit alongside it.
Can a non-engineer operate SuprSend after setup?
Largely yes, which is the point. Once trigger points are instrumented and providers configured, templates, copy, channel choices, workflow branching, and timing are all editable in the dashboard without a deployment. What a non-engineer cannot do is add a new trigger, because that requires a call from your application code.
Does SuprSend offer self-hosting?
Yes, but only on the Enterprise tier, alongside a Bring Your Own Cloud model in beta that runs SuprSend inside your own virtual private cloud for data residency and compliance requirements. Both are quoted rather than published. If self-hosting on a small budget is the requirement, Novu is the open-source alternative to compare against.
Does SuprSend do warehouse sync?
One direction, and only from the Business tier. Notification logs can be synced to Segment or a data warehouse so delivery data joins your analytics. There is no reverse ETL path for defining audiences from warehouse tables, because SuprSend is triggered by application events rather than by segment membership. If warehouse-defined audiences are the requirement, you are shopping in a different category.
Why are batching and preferences on the $275 tier?
It is the vendor's packaging decision and it is a fair criticism. Batching, digest, user preference management, and object data modelling all sit on Business at $275 rather than Essentials at $110, and both tiers include the same 50,000 notifications. Since batching and preferences are the two features most teams buy notification infrastructure for in the first place, the practical entry price is $275 rather than $110. The 30-day full-feature trial at least lets you confirm that before paying.
Should a five-person startup choose SuprSend?
If your product genuinely has a notification problem, yes, and start on the free tier, which handles 10,000 notifications a month with all nine channels. The honest test is whether users are getting duplicate or bursty notifications and whether an in-app inbox is on your roadmap. If your entire requirement is one welcome email and a password reset, use your ESP's API and revisit this when the notification code starts sprawling.
Editorial verdict
SuprSend is a well-judged product that takes the genuinely hard notification problems seriously. Batching and digest, Wait Until, timezone-aware delivery, preference enforcement, and object-based subscribers are the things teams build badly by hand and then maintain forever, and having them as configuration rather than code is worth real money. Bringing your own delivery providers is the right architecture, and the free tier at 10,000 notifications with all nine channels is generous enough to prove the case before spending anything. Two reservations. Batching and preferences sit on the $275 Business tier while the $110 tier includes the same volume and neither feature, which makes the practical entry price higher than the pricing page suggests. And this is infrastructure from a small company on about a million dollars of seed funding, so weigh that against the criticality of the path it sits in. For a product team with a real notification fatigue problem and an engineer to spend a fortnight on it, it is one of the strongest choices in this space.
Written by the SaaSTracker editorial team. Awards, when shown, are judged against the published criteria in our methodology.