Skip to main content
GET
/
api
/
product
/
all
List products
curl --request GET \
  --url https://api.suby.fi/api/product/all \
  --header 'X-Suby-Api-Key: <api-key>'
{
  "success": true,
  "data": {
    "data": [
      {
        "id": "pro_abc123",
        "name": "Premium Monthly Subscription",
        "description": "Monthly premium membership with exclusive features",
        "status": "ACTIVE",
        "platform": "WEB",
        "frequencyInDays": 30,
        "priceCents": "999",
        "currency": "EUR",
        "supply": 100,
        "imageUrl": "https://example.com/product.png",
        "createdAt": "2026-01-15T10:30:00.000Z",
        "paymentMethods": [
          "CRYPTO",
          "CARD"
        ],
        "acceptedAssets": [
          {
            "symbol": "USDC",
            "decimals": 6
          }
        ],
        "acceptedChains": [
          {
            "id": 8453,
            "name": "Base"
          }
        ],
        "discordGuildId": "123456789012345678",
        "discordRoleId": "987654321098765432",
        "discordRemindersId": "111222333444555666",
        "telegramGroupId": "-1001234567890"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 25,
      "total": 10,
      "totalPages": 1
    }
  }
}

Authorizations

X-Suby-Api-Key
string
header
required

API key authentication. Include your API key in the X-Suby-Api-Key header:

X-Suby-Api-Key: your_api_key_here

Query Parameters

status
enum<string>

Filter products by status

Available options:
DRAFT,
PENDING,
ACTIVE,
CANCELLED,
BOT_REMOVED
platform
enum<string>

Filter products by platform

Available options:
DISCORD,
TELEGRAM,
WEB,
INVOICE
page
integer
default:1

Page number for pagination (starts at 1)

Required range: x >= 1
limit
integer
default:25

Number of results per page (maximum 25)

Required range: 1 <= x <= 25

Response

List of products retrieved successfully

success
boolean

Indicates if the request was successful

Example:

true

data
object