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 single featured (curated) template by its ID. User-private templates are never exposed through this endpoint.
Path parameters
| Parameter | Type | Description |
|---|
id | string | The template ID |
Request
curl "https://www.prismvideos.com/api/templates/featured-ugc-pitch" \
-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"
}
}
Response fields
| 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 |
Errors
| Status | Error | When |
|---|
| 404 | not_found | No template exists with the given ID |
| 401 | unauthorized | Missing or invalid API key |
| 403 | forbidden | API key lacks templates:read scope |
See Errors for the full error reference.