Brand
Get the brand table
Get the brands list.
GET
/
brandTable
cURL
curl --request GET \
--url https://dev.creatordb.app/v2/brandTable \
--header 'Accept: application/json' \
--header 'apiId: LE6DPZQkR3TQShxofXoD2j8qCBu1-f0jti665m1t50dwDD12W'const options = {method: 'GET', headers: {apiId: '<apiid>'}};
fetch('https://dev.creatordb.app/v2/brandTable', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://dev.creatordb.app/v2/brandTable"
headers = {"apiId": "<apiid>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dev.creatordb.app/v2/brandTable",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apiId: <apiid>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://dev.creatordb.app/v2/brandTable")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apiId"] = '<apiid>'
response = http.request(request)
puts response.read_bodypackage main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dev.creatordb.app/v2/brandTable"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apiId", "<apiid>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dev.creatordb.app/v2/brandTable")
.header("apiId", "<apiid>")
.asString();{
"data": {
"brands": [
{
"brandId": "wildlifestudios.com",
"name": "Wildlife Studios"
},
{
"brandId": "wildlifestudios.com.zooba",
"name": "Zooba"
},
{
"brandId": "gameloft.com",
"name": "Gameloft"
}
]
},
"quotaUsed": 1,
"quotaUsedTotal": 6025,
"remainingPlanCredit": 993975,
"remainingPrepurchasedCredit": 0,
"timestamp": 1755503514640,
"error": "",
"success": true
}{
"data": null,
"quotaUsed": 0,
"quotaUsedTotal": 0,
"remainingPlanCredit": 0,
"remainingPrepurchasedCredit": 0,
"timestamp": 1755503514404,
"error": "APIKeyNotMatch",
"success": false
}Headers
Example:
"LE6DPZQkR3TQShxofXoD2j8qCBu1-f0jti665m1t50dwDD12W"
Response
OK
Show child attributes
Show child attributes
API credits that were used to make this call.
Total API credits used since the last billing cycle.
The number of remaining free API credits that come with your subscription plan. These API credits are renewed every billing cycle.
The number of remaining extra purchased API credits. These API credits do not expire until used.
Unix timestamp of the call request that the server received.
Errors that occurred during the API call.
It is TRUE when the call is successful.
Last modified on February 25, 2026
⌘I
cURL
curl --request GET \
--url https://dev.creatordb.app/v2/brandTable \
--header 'Accept: application/json' \
--header 'apiId: LE6DPZQkR3TQShxofXoD2j8qCBu1-f0jti665m1t50dwDD12W'const options = {method: 'GET', headers: {apiId: '<apiid>'}};
fetch('https://dev.creatordb.app/v2/brandTable', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://dev.creatordb.app/v2/brandTable"
headers = {"apiId": "<apiid>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://dev.creatordb.app/v2/brandTable",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apiId: <apiid>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}require 'uri'
require 'net/http'
url = URI("https://dev.creatordb.app/v2/brandTable")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["apiId"] = '<apiid>'
response = http.request(request)
puts response.read_bodypackage main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://dev.creatordb.app/v2/brandTable"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("apiId", "<apiid>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://dev.creatordb.app/v2/brandTable")
.header("apiId", "<apiid>")
.asString();{
"data": {
"brands": [
{
"brandId": "wildlifestudios.com",
"name": "Wildlife Studios"
},
{
"brandId": "wildlifestudios.com.zooba",
"name": "Zooba"
},
{
"brandId": "gameloft.com",
"name": "Gameloft"
}
]
},
"quotaUsed": 1,
"quotaUsedTotal": 6025,
"remainingPlanCredit": 993975,
"remainingPrepurchasedCredit": 0,
"timestamp": 1755503514640,
"error": "",
"success": true
}{
"data": null,
"quotaUsed": 0,
"quotaUsedTotal": 0,
"remainingPlanCredit": 0,
"remainingPrepurchasedCredit": 0,
"timestamp": 1755503514404,
"error": "APIKeyNotMatch",
"success": false
}