Skip to main content
This API allows you to create and manage products for your account. Products represent the items or services that your customers can purchase using cryptocurrency payments.

The product object

string
Unique identifier with prod_ prefix (e.g., prod_abc123def456).
string
The product’s name. Leading and trailing whitespace is automatically trimmed.
string
When the product was created (ISO 8601).
string
When the product was last updated (ISO 8601).

List products

Retrieves a paginated list of all products in your account.
integer
default:"1"
Page number for pagination. Results are returned 25 items per page.
Response

Get product

Retrieves a specific product by ID.
string
required
The product’s ID (e.g., prod_abc123def456).
Response

Create product

Creates a new product in your account.
string
required
The product’s name. Whitespace is automatically trimmed. Cannot be blank.
Response

Validation errors

Name cannot be blank

Update product

Updates an existing product.
string
required
The product’s ID (e.g., prod_abc123def456).
string
The product’s name. Whitespace is automatically trimmed.
Response

Delete product

Deletes a product from your account.
This action is irreversible and will also delete the product’s associated prices and other related data.
string
required
The product’s ID (e.g., prod_abc123def456).
Returns 204 No Content on successful deletion.

Product features

Automatic name trimming

Product names automatically have leading and trailing whitespace removed during validation. This ensures consistent formatting and prevents issues with extra spaces.

Associated prices

Products can have multiple associated prices for different pricing models (one-time payments, subscriptions, etc.). When a product is deleted, all associated prices are automatically removed.

Name validation

Product names have the following validation rules:
  • Required: Every product must have a name.
  • Trimmed: Leading and trailing whitespace is automatically removed.
  • Flexible: Names can contain special characters, unicode, and emojis.
  • No uniqueness constraint: Multiple products can have the same name within an account.

Pagination

By default, the API returns 25 products per page. Use the page query parameter to navigate through pages.

Integration example

Sandbox support

The API respects sandbox scoping. If your API token is associated with a sandbox, you can only access products created in that sandbox. Product names can be duplicated across different accounts and sandboxes.