1. Templates
Zebracat Api Docs
  • Quick Start
  • API Key Management
    • List API Keys
      GET
    • Create API Key
      POST
    • Get API Key
      GET
    • Delete API Key
      DELETE
  • Billing
    • Get Balance & Purchase History
      GET
    • Purchase Credits
      POST
    • Get Usage
      GET
    • Get Usage Detail
      GET
  • Avatars
    • List Avatars
      GET
  • Brands
    • List Brands
      GET
    • Create Brand
      POST
    • Update Brand
      PUT
    • Partial Update Brand
      PATCH
    • Delete Brand
      DELETE
  • AI Characters
    • List Characters
      GET
    • Create Character
      POST
    • Suggest Character
      POST
    • Get Character
      GET
    • Update Character
      PUT
    • Partial Update Character
      PATCH
    • Delete Character
      DELETE
  • Image Generation
    • Generate AI Image
      POST
  • Videos
    • List Latest Videos
  • Music
    • List Music
    • Search Music
  • Projects
    • Rename Project
    • Delete Project
  • Scheduling
    • Connect Platform
    • Connected Platforms
    • Disconnect Platform
    • Create Post
    • List Posts
    • Get Post
    • Delete Post
  • Script Generation
    • Generate Voice-Over Script
  • Templates
    • List Templates
      GET
  • Agents
    • Agentic Video Generation
  • Video Generation
    • Audio to Video
    • Blog/URL to Video
    • Idea to Video
    • List Prompt Styles
    • Script to Video
    • Get Video Task Status
  • Video Translation
    • List Languages
    • Translate Video
  • Visual Styles
    • List Visual Styles
    • Create Visual Style
    • Activate Visual Style
    • Delete Visual Style
  • Voices
    • List Cloned Voices
    • Clone a Voice
    • List Voices
  • Webhooks
    • List Webhooks
    • Create Webhook
    • Get Webhook
    • Delete Webhook
  • Schemas
    • RequestBodies
      • activate_visual_styleData
    • APIKey
    • APIKeyCreate
    • Avatar
    • Brand
    • Character
    • ConnectPlatform
    • ConnectedPlatformsResponse
    • DisconnectPlatform
    • PostContent
    • PostResult
    • BulkPostResponse
    • SchedulingList
    • Template
    • Webhook
    • WebhookCreate
  1. Templates

List Templates

GET
https://api.zebracat.ai/v1/templates
Templates
Returns all available preset templates with plan-based access information.
Each template includes an is_allowed field indicating whether the authenticated user's subscription plan grants access to that template.
Template categories:
ai — AI-generated video templates
stock — Stock footage-based templates
sketch — Sketch/illustration-style templates
infinite_zoom — Infinite zoom effect templates
Filtering by category:
Use ?category=ai to filter templates by category.
Response fields:
name — Template name
category — Template category (ai, stock, sketch, infinite_zoom)
footage_type — Type of footage used
aspect_ratio — Video aspect ratio
preview — Video preview URL
thumbnail_src — Thumbnail image URL
is_allowed — Whether the user's plan allows using this template
voice_id — Default voice ID
voice_provider — Voice provider (e.g. 11lab)
mood — Template mood
attributes — Additional template attributes (JSON)

Request

Authorization
API Key
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
or
Query Params

Responses

🟢200
application/json
Body

🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.zebracat.ai/v1/templates?limit&offset&category' \
--header 'X-API-KEY: <api-key>'
Response Response Example
200 - Example 1
[
    {
        "name": "string",
        "user_style_id": 0,
        "footage_type": "ugc_fs",
        "style_id": "infinite_zoom_in",
        "avatar": 0,
        "character_consistency": true,
        "aspect_ratio": "horizontal",
        "has_caption": true,
        "voice_id": "string",
        "voice_provider": "11lab",
        "is_premium_voice": true,
        "mood": "happy",
        "is_music_enabled": true,
        "preview": "string",
        "category": "infinite_zoom",
        "attributes": {},
        "thumbnail_src": "string",
        "is_allowed": true,
        "region": "string"
    }
]
Previous
Generate Voice-Over Script
Next
Agentic Video Generation
Built with