window.Pricing = function Pricing({ navigate }) { function handleTierCta(tier) { if (tier.name === 'Builder') { // Stripe checkout temporarily disabled — route interested users to // contact us so we can capture demand while billing is paused. window.location.href = 'mailto:team@graphite-ai.net?subject=Graphite%20Builder%20tier%20interest'; return; } if (tier.name === 'Explorer') { navigate && navigate('portal'); return; } if (tier.name === 'Enterprise') { window.location.href = 'mailto:team@graphite-ai.net?subject=Graphite%20Enterprise%20inquiry'; return; } } const tiers = [ { name: 'Explorer', price: 'Free', per: '', desc: 'For research, prototypes, and getting a feel for the data.', features: [ '100 graph queries / month (with API key)', 'Read-only public site · 3 ticker views / day per IP', ], cta: 'Start free', }, { name: 'Builder', price: 'Coming soon', per: '', desc: 'For teams shipping agents and analytics on top of structured data.', features: [ '500,000 graph queries / month', 'Full API access · all public graphs', ], cta: 'Get notified', featured: true, }, { name: 'Enterprise', price: 'Custom', per: '', desc: 'Private graphs, dedicated extractors, and named support.', features: [ 'Unlimited graph queries', 'Private domain graphs', 'Dedicated extractor capacity', 'Named engineering contact', ], cta: 'Talk to sales', }, ]; return (

Three tiers. Pick the surface area.

Every tier hits the same graphs and the same evidence. The difference is throughput, support, and whether you need your own private domain graph.

{tiers.map((t, i) => (
{t.featured &&
Most popular
}
{t.name}
{t.priceStrike && ( {t.priceStrike} )} {t.price}{t.per && {t.per}}
{t.promo && (
{t.promo}
)}
{t.desc}
    {t.features.map((f, j) => (
  • {f}
  • ))}
))}
Provenance guarantee

Every fact resolves back to a source document. If a quote doesn't verify, you don't pay for the call.

Fair-use limits

Overages are soft-capped, not surprise-billed. We'll email before you cross a tier boundary.

Academic access

Free Builder tier for accredited research groups. Get in touch with your institutional email.

); };