Skip to main content
GET
/
api
/
v1
/
product
/
list
curl -X GET 'https://app.reddy.io/api/v1/product/list' \
  -H 'Authorization: Bearer your_api_key'
{
  "products": [
    {
      "id": 1,
      "name": "Product 1",
      "status": "active"
    },
    {
      "id": 2,
      "name": "Product 2",
      "status": "archived"
    }
  ]
}
Returns the list of products that the user has access to along with their status.
curl -X GET 'https://app.reddy.io/api/v1/product/list' \
  -H 'Authorization: Bearer your_api_key'
{
  "products": [
    {
      "id": 1,
      "name": "Product 1",
      "status": "active"
    },
    {
      "id": 2,
      "name": "Product 2",
      "status": "archived"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

OK

products
ProductSchema · object[]
required

List of products