GET /api/brand-kits
Description
Retrieve all brand kits belonging to the authenticated client's enterprise.
Returns the brand kit ID and name. Use the returned id as the brand_kit_id parameter when fetching logos or colors.
Header Parameters
{
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
Query Parameters
search
string
Optional
Search brand kits by name.
per_page
integer
Optional
Number of results per page. Default:
25Example Requests
Language:
bashcurl --request GET 'https://oauth.cliquify.me/api/brand-kits' \ --header 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Language:
javascript (Node.js)const fetch = require('node-fetch');
fetch('https://oauth.cliquify.me/api/brand-kits', {
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-kits");
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-kits", 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-kits");
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-kits", 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-kits', false, stream_context_create($opts));
echo $response;
Language:
rubyrequire 'net/http'
require 'uri'
uri = URI.parse("https://oauth.cliquify.me/api/brand-kits")
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": "Primary Brand"
},
{
"id": "c81e728d9d4c2f636f067f89cc14862c",
"name": "Secondary Brand"
}
]
}
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.