GET /api/brand-tags
Description
Retrieve all available brand tags for the authenticated client's enterprise. Brand tags are used to categorize and organize templates and other assets. Supports search by name.
Header Parameters
{
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
Query Parameters
search
string
Optional
Search brand tags by name.
Example Requests
Language:
bashcurl --request GET 'https://oauth.cliquify.me/api/brand-tags' \ --header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Language:
javascript (Node.js)const fetch = require('node-fetch');
fetch('https://oauth.cliquify.me/api/brand-tags', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
}
})
.then(res => res.json())
.then(data => console.log(data));
Language:
javaimport java.net.HttpURLConnection;
import java.net.URL;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception {
URL url = new URL("https://oauth.cliquify.me/api/brand-tags");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Authorization", "Bearer YOUR_ACCESS_TOKEN");
Scanner sc = new Scanner(conn.getInputStream());
while (sc.hasNext()) {
System.out.println(sc.nextLine());
}
sc.close();
}
}
Language:
pythonimport requests
headers = {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
response = requests.get("https://oauth.cliquify.me/api/brand-tags", headers=headers)
print(response.json())
Language:
csharpusing System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
class Program {
static async Task Main() {
var client = new HttpClient();
client.DefaultRequestHeaders.Authorization =
new AuthenticationHeaderValue("Bearer", "YOUR_ACCESS_TOKEN");
var response = await client.GetAsync("https://oauth.cliquify.me/api/brand-tags");
var content = await response.Content.ReadAsStringAsync();
Console.WriteLine(content);
}
}
Language:
gopackage main
import (
"fmt"
"io"
"net/http"
)
func main() {
client := &http.Client{}
req, _ := http.NewRequest("GET", "https://oauth.cliquify.me/api/brand-tags", nil)
req.Header.Add("Authorization", "Bearer YOUR_ACCESS_TOKEN")
resp, _ := client.Do(req)
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
Language:
php$opts = ["http" => [
"method" => "GET",
"header" => "Authorization: Bearer YOUR_ACCESS_TOKEN"
]];
$response = file_get_contents('https://oauth.cliquify.me/api/brand-tags', false, stream_context_create($opts));
echo $response;
Language:
rubyrequire 'net/http'
require 'uri'
uri = URI.parse("https://oauth.cliquify.me/api/brand-tags")
request = Net::HTTP::Get.new(uri)
request["Authorization"] = "Bearer YOUR_ACCESS_TOKEN"
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == "https") do |http|
http.request(request)
end
puts response.body
Success Response
{
"success": true,
"data": [
{
"id": "c4ca4238a0b923820dcc509a6f75849b",
"name": "Logo",
"parent_id": null,
"created_at": "2022-10-05 16:05:23",
"updated_at": "2026-01-20 17:26:41"
},
{
"id": "c81e728d9d4c2f636f067f89cc14862c",
"name": "Color Palette",
"parent_id": "a8baa56554f96369ab93e4f3f2571365",
"created_at": "2023-03-15 10:30:00",
"updated_at": "2026-02-10 12:45:00"
}
]
}
Try It Out
Heads up! This uses your live Cliquify data.
This is not a sandbox or playground — the form below performs real API requests against your account’s actual data. Please ensure you understand what the request does and what each parameter requires.
This is not a sandbox or playground — the form below performs real API requests against your account’s actual data. Please ensure you understand what the request does and what each parameter requires.