GET
/
v1
/
adtypes
curl --request GET \
  --url https://api.adclear.ai/v1/adtypes \
  --header 'Authorization: Bearer <token>'
{
  "ad_types": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174004",
      "name": "Banner Ad"
    },
    {
      "id": "123e4567-e89b-12d3-a456-426614174005",
      "name": "Social Media Post"
    }
  ]
}

Retrieve all ad types associated with your organization. Ad types help categorize your content and ensure the appropriate compliance rules are applied based on the format and medium of your advertising.

Authorizations

Authorization
string
header
required

Use your API key as a Bearer token

Query Parameters

skip
integer
default:0

Number of ad types to skip (for pagination)

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

Maximum number of ad types to return

Required range: 1 <= x <= 100

Response

200
application/json

List of ad types

The response is of type object.