Levercast

Templates API

List your reformat templates through the Levercast API.

List Templates

GET /api/v1/templates

Returns all templates for the authenticated user.

Response:

{
  "data": [
    {
      "id": "uuid",
      "name": "Professional",
      "isDefault": true,
      "linkedInPrompt": "Professional tone, thought leadership...",
      "xPrompt": "Concise and punchy...",
      "circlePrompt": "Community-friendly...",
      "instagramPrompt": "Engaging storytelling...",
      "createdAt": "2025-01-15T10:30:00Z",
      "updatedAt": "2025-01-15T10:30:00Z"
    }
  ]
}

Template Fields

FieldTypeDescription
iduuidUnique identifier
namestringDisplay name
isDefaultbooleanWhether this is the user's default template
linkedInPromptstring | nullCustom prompt for LinkedIn reformatting
xPromptstring | nullCustom prompt for X reformatting
circlePromptstring | nullCustom prompt for Circle reformatting
instagramPromptstring | nullCustom prompt for Instagram reformatting

Null prompt fields indicate that the platform uses the built-in default prompt during reformatting.

On this page