Payments

Stripe

standard

Stripe is an reliable payments provider offering Subscriptions, One-time Payments, Payment Webhooks through Aweb's unified API. It features none streaming support with premium-tier latency.

Try StripeOfficial docs

Specifications

CategoryPayments
Auth Typeapi_key
Latency Tierpremium
Streamingnone
Pricing Tierstandard
Reliabilitypremium
Qualitypremium
Base URLhttps://api.stripe.com
SDK Packagestripe

Capabilities (3)

Subscriptionspayments.subscribe
Score: 99DEFAULT
One-time Paymentspayments.charge
Score: 99DEFAULT
Payment Webhookspayments.webhook
Score: 99DEFAULT

Quick start

Use Stripe through Alfred's unified API — no provider-specific SDK needed.

cURL

curl -X POST https://api.alfred-ai.app/v1/execute \
  -H "Authorization: Bearer $ALFRED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "stripe",
    "capability": "payments.subscribe",
    "input": { "prompt": "Hello from Stripe!" }
  }'

TypeScript

import { Alfred } from '@alfred/core';

const alfred = new Alfred({ apiKey: process.env.ALFRED_API_KEY });

const result = await alfred.execute({
  provider: 'stripe',
  capability: 'payments.subscribe',
  input: { prompt: 'Hello from Stripe!' },
});

console.log(result.output);

Related Payments providers

Square

standard tier

Getting started →API reference →All capabilities →All providers →