Skip to main content
GET
/
v1
/
adtypes
Get Ad Types
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

List of ad types

ad_types
object[]
required

List of ad types associated with the organization.

I