Fetch All Products
Retrieve a nested list of all active categories and their corresponding products.
Endpoint Features
The Fetch All Products endpoint allows you to programmatically fetch all currently active categories and the products inside them.
Dynamic Pricing Engine
Note: The API intelligently determines the customer's VIP Rank (Bronze, Silver, Gold, or Platinum) based on the provided API Key. The price field returned for every single product is already calculated exactly to match the user's specific tier discount!
Authentication
Requires Authorization header with a Bearer API token.
Response Attributes (Categories)
| Field | Type | Description |
|---|---|---|
| id | string | The UUID of the category. |
| name | string | Display name of the category (e.g., VPNs, Accounts). |
| products | array[object] | Array containing all the active products under this category. |
Response Attributes (Products inside Category)
| Field | Type | Description |
|---|---|---|
| uuid | string | The unique identifier of the product. Required for making a purchase. |
| type | string | Is normal or service. |
| price | number | The final price the current API Key holder will pay. |
| stock | number | Current available quantity. |
| telegramDetails | object | Optionally includes special Telegram Bot integration data if applicable. |
Interactive Testing
Ensure your API key is correctly configured in the top bar, then press Try It.
Headers:Authorization: (Not Set - Set in Topbar)