> ## Documentation Index
> Fetch the complete documentation index at: https://docs.creatify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List ad styles

> The styles that style_ids accepts, each with a thumbnail and a preview video. Style ids are stable, so you can fetch this once and reuse the ids.



## OpenAPI

````yaml get /api/html_interactive_ads/styles/
openapi: 3.0.3
info:
  title: creatify.ai API
  version: 1.0.0
  description: API for creatify.ai
servers: []
security: []
paths:
  /api/html_interactive_ads/styles/:
    get:
      tags:
        - html_interactive_ads
      description: List the styles that style_ids accepts.
      operationId: html_interactive_ads_styles_list
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HtmlInteractiveAdStyle'
          description: ''
      security:
        - X-API-ID: []
          X-API-KEY: []
components:
  schemas:
    HtmlInteractiveAdStyle:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        type:
          $ref: '#/components/schemas/HtmlInteractiveAdStyleTypeEnum'
        interactive:
          type: boolean
          description: Whether the ad responds to taps or swipes beyond the call to action.
        thumbnail_url:
          type: string
          format: uri
          nullable: true
        preview_url:
          type: string
          format: uri
          nullable: true
      required:
        - id
        - interactive
        - name
        - preview_url
        - thumbnail_url
        - type
    HtmlInteractiveAdStyleTypeEnum:
      enum:
        - video
        - idea
      type: string
      description: |-
        * `video` - video
        * `idea` - idea
  securitySchemes:
    X-API-ID:
      type: apiKey
      in: header
      name: X-API-ID
      description: API ID, from your settings page.
    X-API-KEY:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API Key, from your settings page.

````