Commet
  • Pricing
Log InTry out
Introduction

Quickstart

Integrate with Next.jsIntegrate with RemixIntegrate with NuxtIntegrate with SvelteKitIntegrate with AstroIntegrate with ExpressIntegrate with HonoIntegrate with Bun

Learn

Resources

SDK ReferenceAPI VersioningError HandlingTestingCLI

Plugins

Better Auth
System status
DocumentationKnowledge BaseBuild with AIAPI ReferenceWebhooks

Integrate with Astro

Add billing and payments to your Astro application.

Install the Commet Skill so your coding agent can integrate the current SDK and verify its work against the live API contract.

npx skills add commet-labs/skills --skill commet

Astro requires an SSR adapter for API routes. Set output: 'server' or output: 'hybrid' in your astro.config.mjs.

Install

pnpm add @commet/node
npm install @commet/node
yarn add @commet/node
bun add @commet/node

Configure

.env
COMMET_API_KEY=ck_sandbox_xxx
src/lib/commet.ts
import { Commet } from '@commet/node'

export const commet = new Commet({
  apiKey: import.meta.env.COMMET_API_KEY,
})

Subscribe

customers.create is idempotent — if a customer with the same id already exists, it returns the existing record.

src/pages/api/billing/subscribe.ts
import type { APIRoute } from 'astro'
import { commet } from '../../../lib/commet'

export const POST: APIRoute = async ({ request }) => {
  const { customerId, email } = await request.json()

  await commet.customers.create({ email, id: customerId })

  const subscription = await commet.subscriptions.create({
    customerId,
    planCode: 'pro',
  })

  return Response.json({ checkoutUrl: subscription.checkoutUrl ?? null })
}

Check Access

src/pages/api/billing/access/[customerId].ts
import type { APIRoute } from 'astro'
import { commet } from '../../../../lib/commet'

export const GET: APIRoute = async ({ params }) => {
  const subscription = await commet.subscriptions.getActive({ customerId: params.customerId! })

  if (!subscription) {
    return Response.json({ error: 'no_active_subscription' }, { status: 404 })
  }

  const feature = await commet.featureAccess.get({
    code: 'api_calls',
    customerId: params.customerId!,
  })

  return Response.json({
    status: subscription.status,
    allowed: feature.allowed,
  })
}

Track Usage

src/pages/api/billing/usage.ts
import type { APIRoute } from 'astro'
import { commet } from '../../../lib/commet'

export const POST: APIRoute = async ({ request }) => {
  const { customerId } = await request.json()

  await commet.usage.track({
    customerId,
    featureCode: 'api_calls',
    value: 1,
  })

  return Response.json({ tracked: true })
}

Usage is aggregated and billed at end of period.

Customer Portal

src/pages/api/billing/portal.ts
import type { APIRoute } from 'astro'
import { commet } from '../../../lib/commet'

export const GET: APIRoute = async ({ redirect }) => {
  const customerId = 'user_123'

  const portal = await commet.portal.getUrl({ customerId })

  return redirect(portal.portalUrl)
}

Related

  • Subscriptions
  • Track Usage
  • Customer Portal
  • SDK Reference

How is this guide?

Integrate with SvelteKit

Add billing and payments to your SvelteKit application.

Integrate with Express

Add billing and payments to your Express application.

On this page

Install
Configure
Subscribe
Check Access
Track Usage
Customer Portal
Related