Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.fluveo.com/llms.txt

Use this file to discover all available pages before exploring further.

Fluveo gives you a unified API to accept payments, sell products, manage orders, and handle fulfillment — all through clean REST endpoints with predictable, resource-oriented URLs.

Accept a Payment

Create a PaymentIntent and collect your first payment.

Sell Products Online

Create products, set prices, and start selling.

API Reference

Explore all endpoints with interactive examples.

Build a Marketplace App

Build apps that extend Fluveo for merchants.

Webhooks

Receive real-time notifications for payment and commerce events.

Testing

Test your integration with simulated payment methods.

Core Resources

Payments

ResourceDescription
PaymentIntentRepresents a payment attempt. Tracks the lifecycle from creation to settlement.
CustomerStores customer information for recurring payments and record-keeping.
RefundReturns funds to a customer for a completed payment.
Checkout SessionA hosted payment page for collecting payments.
Checkout LinkA reusable, shareable URL that opens a checkout session.

Commerce

ResourceDescription
ProductA good or service you sell, with variants and images.
PriceA pricing configuration attached to a product (one-time or recurring).
CollectionA group of products organized for browsing or promotions.
OrderA confirmed purchase with line items, shipping, and payment details.
FulfillmentTracks shipping and delivery for an order.
CartA shopping session with line items, before checkout.
InventoryStock levels and adjustments for product variants.
PromotionDiscounts and coupon codes applied at checkout.

Getting Started

1

Get your API keys

Sign up for an account and grab your test mode secret key (sk_test_...) from the dashboard under Settings > API Keys.
2

Accept a test payment or create a product

Make a POST request to /v1/payment_intents to accept a payment, or to /v1/products to create your first product.
3

Handle webhooks

Set up a webhook endpoint to receive real-time notifications for payment and commerce events.
4

Go live

Switch to your live secret key (sk_live_...) and start processing real payments and orders.

Explore