GET
/
products
List Products
curl --request GET \
  --url https://api.alguna.io/products \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "id": "prod_02zBTaXIplpzpaI6CggiUA",
      "name": "Platform Fee",
      "description": "Monthly cost for accounting reconciliation software",
      "feeType": "fixed",
      "paymentTerms": "arrears",
      "billingFrequency": "recurring",
      "createdAt": "2025-02-24T11:50:06Z",
      "updatedAt": "2025-02-24T11:50:06Z"
    },
    {
      "id": "prod_02zBU4lgiRfwjkrCQtYTUI",
      "name": "User Seast",
      "description": "Number of User Seats",
      "feeType": "metered",
      "paymentTerms": "arrears",
      "billingFrequency": "recurring",
      "metricIds": ["mtr_02zBU3PJ3hJurtFSxDD3Ol"],
      "createdAt": "2025-02-24T12:09:59Z",
      "updatedAt": "2025-02-24T12:09:59Z"
    }
  ]
}

Response

id
string
The unique identifier for the product.
name
string
The name of the product.
description
string
A brief description of the product.
sku
string
A product code used in external ERP solutions of revenue recognition.
feeType
string
The fee type of the product, indicating whether the cost is fixed or based on usage (metered).
paymentTerms
string
The payment terms for the product, such as arrears.
billingFrequency
string
The frequency at which the product is billed, e.g., recurring.
metricIds
[]string
The identifiers for the associated metrics. This field is applicable for metered products.
createdAt
datetime
The timestamp when the product was created.
updatedAt
datetime
The timestamp when the product was last updated.
{
  "products": [
    {
      "id": "prod_02zBTaXIplpzpaI6CggiUA",
      "name": "Platform Fee",
      "description": "Monthly cost for accounting reconciliation software",
      "feeType": "fixed",
      "paymentTerms": "arrears",
      "billingFrequency": "recurring",
      "createdAt": "2025-02-24T11:50:06Z",
      "updatedAt": "2025-02-24T11:50:06Z"
    },
    {
      "id": "prod_02zBU4lgiRfwjkrCQtYTUI",
      "name": "User Seast",
      "description": "Number of User Seats",
      "feeType": "metered",
      "paymentTerms": "arrears",
      "billingFrequency": "recurring",
      "metricIds": ["mtr_02zBU3PJ3hJurtFSxDD3Ol"],
      "createdAt": "2025-02-24T12:09:59Z",
      "updatedAt": "2025-02-24T12:09:59Z"
    }
  ]
}