# Crevio ## Docs - [Changelog](https://crevio.co/docs/changelog/index.md): Latest updates and improvements to Crevio - [Get current account](https://crevio.co/docs/developer/api-reference/account/get-current-account.md): Returns information about the authenticated account - [Update current account](https://crevio.co/docs/developer/api-reference/account/update-current-account.md): Updates the authenticated account's information - [Create ai_site](https://crevio.co/docs/developer/api-reference/ai-sites/create-ai_site.md): Creates an additional AI site under the current account. Refuses if the proposed subdomain is taken. - [Delete ai_site](https://crevio.co/docs/developer/api-reference/ai-sites/delete-ai_site.md): Tears down the AI site (unpublishes the worker, purges D1 + R2, deletes the row). Refuses the default AI site — the account must always own at least one. - [Get ai_site](https://crevio.co/docs/developer/api-reference/ai-sites/get-ai_site.md): Returns a specific AI site - [List ai_sites](https://crevio.co/docs/developer/api-reference/ai-sites/list-ai_sites.md): Returns a list of AI sites for the current account - [Update ai_site](https://crevio.co/docs/developer/api-reference/ai-sites/update-ai_site.md): Updates an existing AI site. Domain changes trigger the full Cloudflare custom-hostname lifecycle. - [Get blog category](https://crevio.co/docs/developer/api-reference/blogcategories/get-blog-category.md): Returns a specific blog category - [List blog categories](https://crevio.co/docs/developer/api-reference/blogcategories/list-blog-categories.md): Returns a list of blog categories for the current account - [Create blog post](https://crevio.co/docs/developer/api-reference/blogposts/create-blog-post.md): Creates a new blog post. - [Delete blog post](https://crevio.co/docs/developer/api-reference/blogposts/delete-blog-post.md): Deletes a blog post. - [Get blog post](https://crevio.co/docs/developer/api-reference/blogposts/get-blog-post.md): Returns a specific blog post by ID or slug - [List blog posts](https://crevio.co/docs/developer/api-reference/blogposts/list-blog-posts.md): Returns a list of blog posts, optionally filtered by status - [Update blog post](https://crevio.co/docs/developer/api-reference/blogposts/update-blog-post.md): Updates an existing blog post. - [Create checkout link](https://crevio.co/docs/developer/api-reference/checkoutlinks/create-checkout-link.md): Creates a new shareable checkout link - [Delete checkout link](https://crevio.co/docs/developer/api-reference/checkoutlinks/delete-checkout-link.md): Deletes a checkout link - [Get checkout link](https://crevio.co/docs/developer/api-reference/checkoutlinks/get-checkout-link.md): Returns a specific checkout link - [List checkout links](https://crevio.co/docs/developer/api-reference/checkoutlinks/list-checkout-links.md): Returns a list of checkout links for the current account - [Update checkout link](https://crevio.co/docs/developer/api-reference/checkoutlinks/update-checkout-link.md): Updates an existing checkout link - [Create checkout session](https://crevio.co/docs/developer/api-reference/checkouts/create-checkout-session.md): Creates a new checkout session for purchasing products - [Get checkout](https://crevio.co/docs/developer/api-reference/checkouts/get-checkout.md): Returns a specific checkout session - [Update checkout](https://crevio.co/docs/developer/api-reference/checkouts/update-checkout.md): Updates an existing checkout session - [Add tag to customer](https://crevio.co/docs/developer/api-reference/customers/add-tag-to-customer.md): Adds a tag to a customer - [Create customer](https://crevio.co/docs/developer/api-reference/customers/create-customer.md): Creates a new customer record - [Delete customer](https://crevio.co/docs/developer/api-reference/customers/delete-customer.md): Soft-deletes a customer record. Only customers without paid orders (status: succeeded) can be deleted. Returns a 422 error if the customer has paid orders. - [Get customer](https://crevio.co/docs/developer/api-reference/customers/get-customer.md): Returns a specific customer - [List customers](https://crevio.co/docs/developer/api-reference/customers/list-customers.md): Returns a list of customers for the current account - [Remove tag from customer](https://crevio.co/docs/developer/api-reference/customers/remove-tag-from-customer.md): Removes a tag from a customer - [Update customer](https://crevio.co/docs/developer/api-reference/customers/update-customer.md): Updates an existing customer record - [Create discount](https://crevio.co/docs/developer/api-reference/discounts/create-discount.md): Creates a new discount code - [Delete discount](https://crevio.co/docs/developer/api-reference/discounts/delete-discount.md): Deletes a discount - [Get discount](https://crevio.co/docs/developer/api-reference/discounts/get-discount.md): Returns a specific discount - [List discounts](https://crevio.co/docs/developer/api-reference/discounts/list-discounts.md): Returns a list of discounts for the current account - [Update discount](https://crevio.co/docs/developer/api-reference/discounts/update-discount.md): Updates an existing discount - [Send email](https://crevio.co/docs/developer/api-reference/emails/send-email.md): Sends an email to customers - [List subscribable events](https://crevio.co/docs/developer/api-reference/events/list-subscribable-events.md): Returns every event that an AiTask can subscribe to via `trigger_type: "event"` + `event_conditions.event_type`. Splits results into `internal` (always-on Crevio-emitted events like form_submission.created, order.paid) and `external` (this account's deployed event sources, e.g. `external.gmail.new_e… - [Create event source](https://crevio.co/docs/developer/api-reference/eventsources/create-event-source.md): Deploys a new external event source. The merchant must have previously connected the underlying app (Gmail, Slack, Calendar, etc.) at /integrations. Use `GET /event_sources/available?app=...` to discover the `vendor_component_id` values. Once active, the vendor delivers events to Crevio and any AiTa… - [Delete event source](https://crevio.co/docs/developer/api-reference/eventsources/delete-event-source.md): Revokes the event source on the vendor side and removes it locally. Vendor revocation failures (already-revoked, vendor 404) are tolerated — the local row is always removed. - [Get event source](https://crevio.co/docs/developer/api-reference/eventsources/get-event-source.md): Returns a specific event source. - [List available event triggers for an app](https://crevio.co/docs/developer/api-reference/eventsources/list-available-event-triggers-for-an-app.md): Lists trigger templates available for a given connected app. The returned `id` value is what you pass back as `vendor_component_id` when creating an event source via `POST /event_sources`. Vendor-agnostic from the consumer's view — implementation currently routes through Pipedream Connect. - [List event sources](https://crevio.co/docs/developer/api-reference/eventsources/list-event-sources.md): Returns external event source registrations for the current account. Each source represents a deployed third-party trigger (e.g. a Gmail "new email" subscription) and emits as `external.` when fired. - [Get experience](https://crevio.co/docs/developer/api-reference/experiences/get-experience.md): Returns a specific experience - [List experiences](https://crevio.co/docs/developer/api-reference/experiences/list-experiences.md): Returns a list of experiences for the current account - [Confirm file upload](https://crevio.co/docs/developer/api-reference/files/confirm-file-upload.md): Confirms a file upload after it has been uploaded to storage - [Create file](https://crevio.co/docs/developer/api-reference/files/create-file.md): Create a file. The endpoint discriminates between three intents based on which fields you send: - [Delete file](https://crevio.co/docs/developer/api-reference/files/delete-file.md): Deletes a file and its associated storage object - [Get file](https://crevio.co/docs/developer/api-reference/files/get-file.md): Returns a single file by its ID - [List files](https://crevio.co/docs/developer/api-reference/files/list-files.md): Returns a list of files for the current account. Supports filtering by kind. - [Download formation document](https://crevio.co/docs/developer/api-reference/formationdocuments/download-formation-document.md): Returns document metadata plus a fresh signed S3 URL valid for ~1 hour. Do not cache the URL. - [List formation documents](https://crevio.co/docs/developer/api-reference/formationdocuments/list-formation-documents.md): Documents become available after formation completes. Returned metadata does not include download URLs — fetch a single document to get one. - [Execute formation](https://crevio.co/docs/developer/api-reference/formations/execute-formation.md): Submit a paid formation to doola. Idempotent — re-calling after submission returns current state. Also acts as a manual retry surface when SubmitFormationJob has exhausted its automatic retries: resets status from failed to pending and re-enqueues. - [Get formation](https://crevio.co/docs/developer/api-reference/formations/get-formation.md): Returns the current state of a formation, including status, documents, and the most recent doola error if any. - [List formations](https://crevio.co/docs/developer/api-reference/formations/list-formations.md): Returns all business formations for the account, newest first. - [List NAICS codes](https://crevio.co/docs/developer/api-reference/formations/list-naics-codes.md): Reference data: all NAICS industry codes accepted by doola for formation. Cached for 24h. - [Retry formation payment](https://crevio.co/docs/developer/api-reference/formations/retry-formation-payment.md): Regenerate the Stripe Checkout session for a formation whose previous payment attempt expired or failed. Resets the formation to draft and clears any prior doola_error. Refuses if the formation has already been paid for. - [Submit formation](https://crevio.co/docs/developer/api-reference/formations/submit-formation.md): Create a draft formation and start payment. Returns a Stripe checkout_url unless the account has a saved card, in which case the charge happens inline and charged_inline is true. - [Archive form](https://crevio.co/docs/developer/api-reference/forms/archive-form.md): Soft-deletes a Form by setting archived_at. The form stops appearing in the active list but its fields and submissions are preserved. Idempotent. - [Create form](https://crevio.co/docs/developer/api-reference/forms/create-form.md): Creates a new Form, optionally with fields nested via form_fields_attributes. Use this to provision newsletter, contact, lead-magnet, or custom-purpose forms programmatically. - [Create form submission](https://crevio.co/docs/developer/api-reference/forms/create-form-submission.md): Submits an answer set to a specific Form. Customer is upserted by email; lead-magnet purpose forms also trigger delivery. - [Delete form](https://crevio.co/docs/developer/api-reference/forms/delete-form.md): Permanently deletes a Form. Refuses with a 422 if the form has submissions — archive it instead via PATCH /forms/{id}/archive to preserve them. - [Get form](https://crevio.co/docs/developer/api-reference/forms/get-form.md) - [List forms](https://crevio.co/docs/developer/api-reference/forms/list-forms.md): Returns all forms for the current account. - [Restore form](https://crevio.co/docs/developer/api-reference/forms/restore-form.md): Unarchives a previously archived Form so it appears in the active list again. Idempotent. - [Update form](https://crevio.co/docs/developer/api-reference/forms/update-form.md): Update a Form's name, settings, confirmation behavior, or auto-tag list. - [Create form submission](https://crevio.co/docs/developer/api-reference/formsubmissions/create-form-submission.md): Submits a response to a lead magnet form; creates the customer if needed and triggers delivery. - [Get form submission](https://crevio.co/docs/developer/api-reference/formsubmissions/get-form-submission.md): Returns a specific form submission - [List form submissions](https://crevio.co/docs/developer/api-reference/formsubmissions/list-form-submissions.md): Returns a list of form submissions for the current account - [API reference](https://crevio.co/docs/developer/api-reference/introduction.md): Programmatically manage your Crevio storefront - [Create invoice](https://crevio.co/docs/developer/api-reference/invoices/create-invoice.md): Creates a new invoice and sends it to the customer via email - [Get invoice](https://crevio.co/docs/developer/api-reference/invoices/get-invoice.md): Returns a specific invoice - [List invoices](https://crevio.co/docs/developer/api-reference/invoices/list-invoices.md): Returns a list of invoices for the current account - [Void invoice](https://crevio.co/docs/developer/api-reference/invoices/void-invoice.md): Voids an open invoice. Cannot void paid invoices. - [Get legal page](https://crevio.co/docs/developer/api-reference/legalpages/get-legal-page.md): Returns a specific legal page by ID or slug - [List legal pages](https://crevio.co/docs/developer/api-reference/legalpages/list-legal-pages.md): Returns a list of legal pages (Terms of Service, Privacy Policy, Refund Policy) - [Update legal page](https://crevio.co/docs/developer/api-reference/legalpages/update-legal-page.md): Updates a legal page's body. Clearing the Terms of Service body also disables the require_terms_acceptance setting on the account. - [Get current user profile](https://crevio.co/docs/developer/api-reference/me/get-current-user-profile.md): Returns the authenticated user's profile data including their roles in the current account - [Get order item](https://crevio.co/docs/developer/api-reference/orderitems/get-order-item.md): Returns details of a specific order item - [List order items](https://crevio.co/docs/developer/api-reference/orderitems/list-order-items.md): Returns order items for a specific order - [Get order](https://crevio.co/docs/developer/api-reference/orders/get-order.md): Returns a specific order - [List orders](https://crevio.co/docs/developer/api-reference/orders/list-orders.md): Returns a list of orders for the current account - [Create price variant](https://crevio.co/docs/developer/api-reference/pricevariants/create-price-variant.md): Creates a new price variant for a product - [Delete price variant](https://crevio.co/docs/developer/api-reference/pricevariants/delete-price-variant.md): Deletes a price variant. - [Get price variant](https://crevio.co/docs/developer/api-reference/pricevariants/get-price-variant.md): Returns a specific price variant - [List price variants](https://crevio.co/docs/developer/api-reference/pricevariants/list-price-variants.md): Returns all price variants for the current account. Optionally filter by product. - [Update price variant](https://crevio.co/docs/developer/api-reference/pricevariants/update-price-variant.md): Updates an existing price variant. Set archived to true to archive it. - [Create product](https://crevio.co/docs/developer/api-reference/products/create-product.md): Creates a new product - [Delete product](https://crevio.co/docs/developer/api-reference/products/delete-product.md): Deletes a product. Only products with no orders and no Stripe product ID can be deleted. - [Get product details](https://crevio.co/docs/developer/api-reference/products/get-product-details.md): Returns detailed information about a specific product - [List products](https://crevio.co/docs/developer/api-reference/products/list-products.md): Returns a list of products for the current account. Supports filtering by status and searching by name. - [Request x402 payment access](https://crevio.co/docs/developer/api-reference/products/request-x402-payment-access.md): Returns 402 with payment requirements, or grants access on valid x402 payment. Pass a price_variant query param to select a specific variant, otherwise the first visible variant is used. - [Update product](https://crevio.co/docs/developer/api-reference/products/update-product.md): Updates an existing product - [Create refund](https://crevio.co/docs/developer/api-reference/refunds/create-refund.md): Creates a new refund for an order - [Get refund](https://crevio.co/docs/developer/api-reference/refunds/get-refund.md): Returns a specific refund - [List refunds](https://crevio.co/docs/developer/api-reference/refunds/list-refunds.md): Returns a list of refunds for the current account - [Create review](https://crevio.co/docs/developer/api-reference/reviews/create-review.md): Creates a new review for a product - [Delete review](https://crevio.co/docs/developer/api-reference/reviews/delete-review.md): Deletes a review - [Get review](https://crevio.co/docs/developer/api-reference/reviews/get-review.md): Returns a specific review - [List reviews](https://crevio.co/docs/developer/api-reference/reviews/list-reviews.md): Returns reviews for products in the current account - [Reorder review](https://crevio.co/docs/developer/api-reference/reviews/reorder-review.md): Updates the position of a review within its product's review list. Other reviews are reindexed accordingly. - [Update review](https://crevio.co/docs/developer/api-reference/reviews/update-review.md): Updates an existing review - [Activate social posting](https://crevio.co/docs/developer/api-reference/socials/activate-social-posting.md): Enables social posting for the current account. Idempotent. Requires an active subscription. - [Create a hosted connect portal](https://crevio.co/docs/developer/api-reference/socials/create-a-hosted-connect-portal.md): A hosted multi-account connect portal is not offered; use POST /socials/connect for a per-platform OAuth URL. - [Create a post](https://crevio.co/docs/developer/api-reference/socials/create-a-post.md): Creates a draft post, or publishes/schedules it immediately when publish_now or scheduled_at is set. - [Delete a comment](https://crevio.co/docs/developer/api-reference/socials/delete-a-comment.md): Deletes a comment on the post. Supported on Facebook, Instagram, Bluesky, Reddit, YouTube, and LinkedIn. - [Delete a post](https://crevio.co/docs/developer/api-reference/socials/delete-a-post.md): Deletes a post; published posts are unpublished from their platforms first. - [Disconnect an account](https://crevio.co/docs/developer/api-reference/socials/disconnect-an-account.md): Disconnects a social account. - [Edit a draft post](https://crevio.co/docs/developer/api-reference/socials/edit-a-draft-post.md): Edits a draft post. Only posts in the draft status are editable. - [Get a post](https://crevio.co/docs/developer/api-reference/socials/get-a-post.md): Retrieves a single social post. - [Get account analytics](https://crevio.co/docs/developer/api-reference/socials/get-account-analytics.md): Returns analytics for a connected account. - [Get an OAuth connect URL](https://crevio.co/docs/developer/api-reference/socials/get-an-oauth-connect-url.md): Returns an OAuth URL to connect a social account on the given platform. Activates the account on first connect; requires an active subscription. - [Get post analytics](https://crevio.co/docs/developer/api-reference/socials/get-post-analytics.md): Returns per-post analytics. Null until the post is published. - [Get post comments](https://crevio.co/docs/developer/api-reference/socials/get-post-comments.md): Returns comments on a published post. - [Get social status](https://crevio.co/docs/developer/api-reference/socials/get-social-status.md): Returns whether social posting is activated and lists the connected accounts. - [Hide a comment](https://crevio.co/docs/developer/api-reference/socials/hide-a-comment.md): Hides a comment (visible only to its author and page admins). Supported on Facebook, Instagram, Threads, and X/Twitter. - [Label an account](https://crevio.co/docs/developer/api-reference/socials/label-an-account.md): Assigns a custom label to a connected account and returns it. - [Like a comment](https://crevio.co/docs/developer/api-reference/socials/like-a-comment.md): Likes or upvotes a comment. Supported on Facebook, Twitter/X, Bluesky, and Reddit. Bluesky requires the comment cid. - [List comment activity](https://crevio.co/docs/developer/api-reference/socials/list-comment-activity.md): Cross-account feed of posts with comment counts across all connected channels, for triaging where to engage. Paginates by opaque cursor (next_cursor). - [List connected accounts](https://crevio.co/docs/developer/api-reference/socials/list-connected-accounts.md): Lists all connected social accounts. - [List posts](https://crevio.co/docs/developer/api-reference/socials/list-posts.md): Lists social posts with optional status/date filtering and pagination. - [List uploads](https://crevio.co/docs/developer/api-reference/socials/list-uploads.md): Lists previously uploaded media. - [Publish a draft post](https://crevio.co/docs/developer/api-reference/socials/publish-a-draft-post.md): Publishes a draft post immediately. - [Reply to a post or comment](https://crevio.co/docs/developer/api-reference/socials/reply-to-a-post-or-comment.md): Posts a public reply to the post, or to a specific comment when comment_id is given. Published as the chosen connected account. Requires the post to be published. - [Send a private reply](https://crevio.co/docs/developer/api-reference/socials/send-a-private-reply.md): Sends a private message to the author of a comment. Instagram and Facebook only; one reply per comment, within 7 days, text only. - [Sync connected accounts](https://crevio.co/docs/developer/api-reference/socials/sync-connected-accounts.md): Refreshes the list of connected social accounts. - [Unhide a comment](https://crevio.co/docs/developer/api-reference/socials/unhide-a-comment.md): Unhides a previously hidden comment. Supported on Facebook, Instagram, Threads, and X/Twitter. - [Unlike a comment](https://crevio.co/docs/developer/api-reference/socials/unlike-a-comment.md): Removes a like from a comment. Supported on Facebook, Twitter/X, Bluesky, and Reddit. Bluesky requires the like_uri returned when liking. - [Upload media](https://crevio.co/docs/developer/api-reference/socials/upload-media.md): Uploads media from a public URL for use in posts. - [Cancel subscription](https://crevio.co/docs/developer/api-reference/subscriptions/cancel-subscription.md): Cancels a subscription. Metered and past-due subscriptions are canceled immediately. Others cancel at the end of the current billing period. - [Get subscription](https://crevio.co/docs/developer/api-reference/subscriptions/get-subscription.md): Returns a specific subscription - [List subscriptions](https://crevio.co/docs/developer/api-reference/subscriptions/list-subscriptions.md): Returns a list of customer subscriptions for the current account - [Pause subscription](https://crevio.co/docs/developer/api-reference/subscriptions/pause-subscription.md): Pauses a subscription - [Resume subscription](https://crevio.co/docs/developer/api-reference/subscriptions/resume-subscription.md): Resumes a paused or canceled subscription - [Create tag](https://crevio.co/docs/developer/api-reference/tags/create-tag.md): Creates a new tag - [Delete tag](https://crevio.co/docs/developer/api-reference/tags/delete-tag.md): Deletes a tag - [Get tag](https://crevio.co/docs/developer/api-reference/tags/get-tag.md): Returns a specific tag - [List tags](https://crevio.co/docs/developer/api-reference/tags/list-tags.md): Returns a list of tags for the current account - [Update tag](https://crevio.co/docs/developer/api-reference/tags/update-tag.md): Updates an existing tag - [Get task run](https://crevio.co/docs/developer/api-reference/taskruns/get-task-run.md): Returns a specific task run record. - [List task runs](https://crevio.co/docs/developer/api-reference/taskruns/list-task-runs.md): Returns a list of task run records for the current account, ordered by most recent first. Supports filtering by status and ai_task_id. - [Update task run](https://crevio.co/docs/developer/api-reference/taskruns/update-task-run.md): Reports the outcome of a running task. Primarily used by the in-sandbox agent server to finalize a run (completed, failed, needs_input) with token usage and credit consumption. Idempotent: re-posting the same status is a safe no-op. - [Create task](https://crevio.co/docs/developer/api-reference/tasks/create-task.md): Creates a new AI task. Use trigger_type to schedule it: `immediate` runs once right away, `cron` runs on a cron expression, `interval` runs every N seconds, `once` runs at a specific scheduled_at, `event` runs in response to account events. - [Delete task](https://crevio.co/docs/developer/api-reference/tasks/delete-task.md): Deletes an AI task. - [Get task](https://crevio.co/docs/developer/api-reference/tasks/get-task.md): Returns a specific AI task. - [List tasks](https://crevio.co/docs/developer/api-reference/tasks/list-tasks.md): Returns a list of AI tasks for the current account. Supports filtering by trigger_type and active status, and searching by name or description. - [Update task](https://crevio.co/docs/developer/api-reference/tasks/update-task.md): Updates an existing AI task. - [Create webhook endpoint](https://crevio.co/docs/developer/api-reference/webhookendpoints/create-webhook-endpoint.md): Creates a new webhook endpoint. The secret is only returned on creation. - [Delete webhook endpoint](https://crevio.co/docs/developer/api-reference/webhookendpoints/delete-webhook-endpoint.md): Deletes a webhook endpoint - [Get webhook endpoint](https://crevio.co/docs/developer/api-reference/webhookendpoints/get-webhook-endpoint.md): Returns a specific webhook endpoint - [List available webhook event types](https://crevio.co/docs/developer/api-reference/webhookendpoints/list-available-webhook-event-types.md): Returns a list of all available event types that can be subscribed to - [List webhook endpoints](https://crevio.co/docs/developer/api-reference/webhookendpoints/list-webhook-endpoints.md): Returns a list of webhook endpoints for the current account - [Test webhook endpoint](https://crevio.co/docs/developer/api-reference/webhookendpoints/test-webhook-endpoint.md): Sends a test event to the webhook endpoint - [Update webhook endpoint](https://crevio.co/docs/developer/api-reference/webhookendpoints/update-webhook-endpoint.md): Updates an existing webhook endpoint - [Get webhook event](https://crevio.co/docs/developer/api-reference/webhookevents/get-webhook-event.md): Returns a specific webhook event - [List webhook events](https://crevio.co/docs/developer/api-reference/webhookevents/list-webhook-events.md): Returns a list of webhook events for the current account - [Get x402 configuration](https://crevio.co/docs/developer/api-reference/x402configuration/get-x402-configuration.md): Returns the x402 payment configuration for the current account - [Update x402 configuration](https://crevio.co/docs/developer/api-reference/x402configuration/update-x402-configuration.md): Updates the x402 payment configuration - [API overview](https://crevio.co/docs/developer/guides/api-overview.md): Integrate Crevio into your own applications with the REST API. - [TypeScript SDK](https://crevio.co/docs/developer/guides/sdk.md): Use the official @crevio/sdk to interact with the Crevio API - [Webhooks](https://crevio.co/docs/developer/guides/webhooks.md): Receive real-time notifications when events happen in your Crevio account. - [Developer overview](https://crevio.co/docs/developer/index.md): Build on the Crevio platform with our API and SDK - [MCP Server](https://crevio.co/docs/developer/mcp.md): Connect AI agents to your Crevio account using the Model Context Protocol - [Connecting](https://crevio.co/docs/developer/mcp/connection.md): Connect Claude, Cursor, and other MCP clients to the Crevio MCP server - [Analytics](https://crevio.co/docs/features/analytics.md): Track revenue, orders, visitor traffic, and customer acquisition with built-in analytics - [Blog](https://crevio.co/docs/features/blog.md): Publish articles, build an audience, and drive traffic to your products - [Checkout](https://crevio.co/docs/features/checkout.md): Understand how buyers purchase your products through Crevio's checkout flow - [Customers](https://crevio.co/docs/features/customers.md): Track your buyers, segment your audience, and understand customer lifetime value - [Discounts](https://crevio.co/docs/features/discounts.md): Create discount codes to run promotions, reward loyal customers, and boost conversions - [Experiences](https://crevio.co/docs/features/experiences.md): Deliver content and access to your buyers -- courses, downloads, communities, events, and more - [Invoices](https://crevio.co/docs/features/invoices.md): Send invoices to buyers and get paid on your terms - [Orders](https://crevio.co/docs/features/orders.md): View, manage, and refund orders placed through your Crevio storefront - [Pricing & price variants](https://crevio.co/docs/features/pricing.md): Set up flexible pricing with multiple tiers, subscriptions, pay-what-you-want, and more - [Products](https://crevio.co/docs/features/products.md): Create, manage, and publish digital products on your Crevio storefront - [Storefront](https://crevio.co/docs/features/storefront.md): Customize your link-in-bio page to showcase products, capture leads, and build your brand - [Team management](https://crevio.co/docs/features/team.md): Invite team members, assign roles, and collaborate on your Crevio account - [Welcome to Crevio](https://crevio.co/docs/index.md): AI that runs your business while you focus on what matters. Sell digital products, courses, and services on autopilot. - [Connected apps](https://crevio.co/docs/integrations/connected-apps.md): Connect Crevio to 3,000+ apps and automate your business workflows - [Custom domain](https://crevio.co/docs/integrations/custom-domain.md): Serve your Crevio storefront from your own domain and send emails from your own email domain. - [Discord](https://crevio.co/docs/integrations/discord.md): Connect your Discord server to automatically grant and revoke access for paying customers. - [Email domain](https://crevio.co/docs/integrations/email-domain.md): Send outbound emails from your own domain instead of the default Crevio address. - [Slack](https://crevio.co/docs/integrations/slack.md): Talk to your Crevio AI directly from Slack — like having an AI coworker in your workspace. - [Stripe](https://crevio.co/docs/integrations/stripe.md): Connect your Stripe account to accept payments, manage subscriptions, and handle payouts through Crevio. - [Telegram](https://crevio.co/docs/integrations/telegram.md): Connect your Telegram groups and channels to sell paid access with automatic member management. - [x402 Crypto Payments](https://crevio.co/docs/integrations/x402.md): Accept cryptocurrency payments on your Crevio storefront using the x402 protocol - [FAQ](https://crevio.co/docs/introduction/faq.md): Answers to common questions about working with Crevio's AI, what it can do, and how to get the most out of it. - [Getting started](https://crevio.co/docs/introduction/getting-started.md): Create your account, set up your storefront, and start selling in minutes. - [How Crevio works](https://crevio.co/docs/introduction/how-crevio-works.md): Understand the core concepts behind Crevio -- accounts, products, experiences, pricing, and the customer journey. - [Automation](https://crevio.co/docs/tips/automation.md): Automate your workflows with webhooks, the API, and built-in integrations - [Boost your sales](https://crevio.co/docs/tips/boost-sales.md): Practical strategies to increase conversions and revenue on Crevio - [Content delivery best practices](https://crevio.co/docs/tips/content-delivery.md): Get the most out of Crevio's experience types for delivering content to customers - [SEO optimization](https://crevio.co/docs/tips/seo.md): Improve your search engine visibility on Crevio ## OpenAPI Specs - [openapi](https://crevio.co/docs/developer/api-reference/openapi.json)