curl --request GET \
--url https://app.colacloud.us/api/v1/colas \
--header 'X-API-Key: <api-key>'import requests
url = "https://app.colacloud.us/api/v1/colas"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://app.colacloud.us/api/v1/colas', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.colacloud.us/api/v1/colas",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.colacloud.us/api/v1/colas"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.colacloud.us/api/v1/colas")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.colacloud.us/api/v1/colas")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"ttb_id": "24001234567",
"brand_name": "Sample Winery",
"product_name": "Reserve Cabernet Sauvignon",
"product_type": "wine",
"class_name": "table red wine",
"origin_name": "american",
"permit_number": "CA-I-12345",
"application_status": "approved",
"approval_date": "2024-01-20",
"image_count": 2,
"has_barcode": true
}
],
"pagination": {
"mode": "offset",
"page": 1,
"per_page": 20,
"total": null,
"pages": null,
"has_more": true
}
}Search COLAs
Search and filter Certificates of Label Approval with full-text search and various filters. Results are ordered by approval date (descending).
When no explicit date filters (approval_date_from, approval_date_to) are provided, results
default to the last 365 days, except for exact 14-digit TTB-ID searches and non-approved
status filters (expired, surrendered, or revoked), which search all available history.
Explicit date filters always take precedence. The defaults_applied field in the response
indicates when the recent-date default is active.
curl --request GET \
--url https://app.colacloud.us/api/v1/colas \
--header 'X-API-Key: <api-key>'import requests
url = "https://app.colacloud.us/api/v1/colas"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://app.colacloud.us/api/v1/colas', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.colacloud.us/api/v1/colas",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.colacloud.us/api/v1/colas"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.colacloud.us/api/v1/colas")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.colacloud.us/api/v1/colas")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"ttb_id": "24001234567",
"brand_name": "Sample Winery",
"product_name": "Reserve Cabernet Sauvignon",
"product_type": "wine",
"class_name": "table red wine",
"origin_name": "american",
"permit_number": "CA-I-12345",
"application_status": "approved",
"approval_date": "2024-01-20",
"image_count": 2,
"has_barcode": true
}
],
"pagination": {
"mode": "offset",
"page": 1,
"per_page": 20,
"total": null,
"pages": null,
"has_more": true
}
}Authorizations
API key passed in the X-API-Key header
Query Parameters
Text search query. Searches TTB ID, brand, product, class, permit number, and applicant/company name. Exact 14-digit TTB IDs take precedence; other barcode-shaped queries are treated as barcode lookups first.
Filter by one or more TTB product types. Comma-separated values are accepted.
wine, malt beverage, distilled spirits Filter by one or more consumer-facing taxonomy roots. Comma-separated values are accepted. This trade-oriented classification is independent of the TTB product_type field.
Beer, Wine, Liquor Filter by a canonical taxonomy path prefix, such as "Beer > Ale" or "Wine > Red Wine". Paths with a published transition alias are accepted and resolved to their current canonical path.
Filter by origin/country (e.g., "american", "french", "italian")
Filter by domestic or imported origin.
domestic, imported Filter by current TTB application status. Non-approved statuses search all available history when no explicit approval-date filter is supplied.
approved, expired, surrendered, revoked Filter by brand name (partial match, case-insensitive)
Filter by permit number (exact match, e.g. "CA-I-12345")
Filter by the COLA record's main barcode value (exact match). Numeric values may include spaces or hyphens.
Filter by minimum approval date (YYYY-MM-DD)
Filter by maximum approval date (YYYY-MM-DD)
Filter by minimum alcohol by volume (ABV) percentage
Filter by maximum alcohol by volume (ABV) percentage
Filter by package volume unit. Required when volume_min or volume_max is provided.
beer barrels, fluid ounces, gallons, liters, milliliters, pints, quarts Filter by minimum package volume in the selected volume_unit.
x >= 0Filter by maximum package volume in the selected volume_unit.
x >= 0Filter by one or more derived container types. Comma-separated values are accepted.
bag, bottle, box, can, carton, cask, jug, keg, pod, pouch Page number (max 100)
1 <= x <= 100Results per page (max 100)
1 <= x <= 100
