GET
/
v1
/
products
curl --request GET \
  --url https://api.adclear.ai/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "Credit Card"
    },
    {
      "id": "123e4567-e89b-12d3-a456-426614174001",
      "name": "Personal Loan"
    }
  ]
}

Retrieve all products associated with your organization. Products are used when evaluating content to ensure the correct compliance rules and guidelines are applied.

Authorizations

Authorization
string
header
required

Use your API key as a Bearer token

Query Parameters

skip
integer
default:0

Number of products to skip (for pagination)

Required range: x >= 0
limit
integer
default:100

Maximum number of products to return

Required range: 1 <= x <= 100

Response

200
application/json

List of products

The response is of type object.