Cliquify Developer
  1. Templates
  • Overview
    • Getting started
  • other
    • Integrations
    • Appendix
      • OAuth Scopes
      • Error Responses
    • Templates
      • Get Tags
        GET
      • Get Templates
        GET
    • User
      • Get Authenticated User
    • Authentication
      • Overview
      • Generate Access Token
      • Introspect Access Token
      • Revoke Token
    • Get Brand Assets
      GET
  • Authentication
    • Overview
    • Token lifecycle
    • OAuth scopes
    • Get an access token
      POST
    • Introspect a token
      POST
    • Revoke a token
      POST
  1. Templates

Get Templates

Developing
GET
{{baseUrl}}api/templates
Retrieve all templates available to the authenticated user. This endpoint returns a list of template objects you can use to preview or build content.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{baseUrl}}api/templates?tags=onboarding&sort_by=relevance' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Response Response Example
{
  "message": "",
  "success": true,
  "data": {
    "current_page": 1,
    "data": [
      {
        "id": 1366,
        "name": "TEMPLATE 1",
        "template_type": "GRAPHIC",
        "media_type": "image/png",
        "preview": "https://ik.imagekit.io/cliqdev/template/e/1/1366/f6tlOdnccv.png",
        "video_preview": "https://cdn.thecliquify.co/template/e/1/1366/2J4RxIL_TPCaWWFZBxXLizxh.mp4",
        "org_preview": "https://cdn.thecliquify.co/template/e/1/1366/f6tlOdnccv.png"
      }
    ],
    "per_page": 25,
    "total": "n"
  }
}
Modified at 2026-04-08 11:49:55
Previous
Get Tags
Next
Get Authenticated User
Built with