Documentation Index
Fetch the complete documentation index at: https://docs.prismvideos.com/llms.txt
Use this file to discover all available pages before exploring further.
Returns a paginated list of featured (curated) templates. User-private templates are never exposed through this endpoint.
Query parameters
| Parameter | Type | Default | Description |
|---|
limit | integer | 50 | Number of templates to return (max 100) |
offset | integer | 0 | Pagination offset |
q | string | — | Case-insensitive substring search across title and description (minimum 2 characters) |
Request
curl "https://www.prismvideos.com/api/templates?limit=10" \
-H "Authorization: Bearer prism_sk_your_key_here"
Response
{
"data": [
{
"id": "featured-ugc-pitch",
"title": "UGC Product Pitch",
"description": "Creator talks to camera and shows product with CTA",
"kind": "video",
"model_name": "veo-3.1"
}
],
"pagination": {
"offset": 0,
"limit": 10,
"has_more": true
}
}
Response fields
Template object
| Field | Type | Description |
|---|
id | string | Unique template identifier |
title | string | Display name |
description | string or null | Brief description |
kind | "image" or "video" | The generation surface the template targets |
model_name | string | Name of the underlying generation model |
| Field | Type | Description |
|---|
offset | number | Current offset |
limit | number | Requested limit |
has_more | boolean | Whether more results exist beyond this page |