Skip to main content
GET
/
templates
List Templates
curl --request GET \
  --url https://api.veryfront.com/templates \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "slug": "<string>",
      "name": "<string>",
      "config": {
        "description": "<string>",
        "category": "<string>",
        "preview_url": "<string>"
      },
      "environments": [
        {
          "id": "<string>",
          "name": "<string>",
          "domains": [
            "<string>"
          ]
        }
      ],
      "users": [
        "<unknown>"
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "page_info": {
    "self": "<string>",
    "first": null,
    "next": "<string>",
    "prev": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Authentication via JWT token or API key. JWT: Get from Veryfront dashboard. API Key: Format "vf__" - create via /api-keys endpoint.

Query Parameters

Search term to filter templates by name or slug

Example:

"landing"

use_case
string

Filter by use case/category (e.g., "Store", "Landing")

Example:

"Store"

sort
string

Sort field and direction in format "field:ASC" or "field:DESC". Valid fields: name, slug, created_at, updated_at

Example:

"name:ASC"

cursor
string

Cursor for pagination (template ID)

limit
number
default:20

Maximum number of templates to return (default: 20, max: 100)

Required range: 1 <= x <= 100
exclude_blank
enum<string>

Exclude the blank template from results

Available options:
true,
false
Example:

"true"

Response

Paginated list of available templates

data
object[]
required
page_info
object
required