Skip to main content

Retrieve Product List

Fetch available products using a valid token.

// Request
GET /api/v1/products
Authorization: Bearer <token>

// Response
{
products: ProductDTO[]
}

type ProductDTO = {
id: string
name: string
price: number
currency: string
isConsumable: boolean
}