Get License
curl --request GET \
--url https://api.nexusfeed.dev/v1/abc/license/{license_number}import requests
url = "https://api.nexusfeed.dev/v1/abc/license/{license_number}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.nexusfeed.dev/v1/abc/license/{license_number}', 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://api.nexusfeed.dev/v1/abc/license/{license_number}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.nexusfeed.dev/v1/abc/license/{license_number}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.nexusfeed.dev/v1/abc/license/{license_number}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nexusfeed.dev/v1/abc/license/{license_number}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"state": "<string>",
"license_number": "<string>",
"_verifiability": {
"source_timestamp": "2023-11-07T05:31:56Z",
"extraction_confidence": 123,
"raw_data_evidence_url": "<string>",
"extraction_method": "api_mirror",
"data_freshness_ttl_seconds": 123
},
"record": {
"license_number": "<string>",
"license_type_code": "<string>",
"dba_name": "<string>",
"owner_name": "<string>",
"expiration_date": "2023-12-25",
"status": "ACTIVE",
"address": {
"street": "<string>",
"city": "<string>",
"state": "<string>",
"zip_code": "<string>",
"county": "<string>",
"raw": "<string>"
},
"suspensions": [
{
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"reason": "<string>"
}
]
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}ABC
Get License
Look up a single ABC liquor license by its state-issued license number.
Use this endpoint when you already have a license number and need to verify its current status, expiration date, license type, and holder details. More precise than search — returns exactly one record or 404 if not found.
The _verifiability block includes a raw_data_evidence_url linking directly to the
source record on the state agency’s website, enabling independent verification.
Supported states: CA (CA ABC), TX (TX TABC, requires CAPTCHA solver), NY (NY Open Data), FL (DBPR), IL (ILCC).
GET
/
v1
/
abc
/
license
/
{license_number}
Get License
curl --request GET \
--url https://api.nexusfeed.dev/v1/abc/license/{license_number}import requests
url = "https://api.nexusfeed.dev/v1/abc/license/{license_number}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.nexusfeed.dev/v1/abc/license/{license_number}', 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://api.nexusfeed.dev/v1/abc/license/{license_number}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.nexusfeed.dev/v1/abc/license/{license_number}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.nexusfeed.dev/v1/abc/license/{license_number}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.nexusfeed.dev/v1/abc/license/{license_number}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"state": "<string>",
"license_number": "<string>",
"_verifiability": {
"source_timestamp": "2023-11-07T05:31:56Z",
"extraction_confidence": 123,
"raw_data_evidence_url": "<string>",
"extraction_method": "api_mirror",
"data_freshness_ttl_seconds": 123
},
"record": {
"license_number": "<string>",
"license_type_code": "<string>",
"dba_name": "<string>",
"owner_name": "<string>",
"expiration_date": "2023-12-25",
"status": "ACTIVE",
"address": {
"street": "<string>",
"city": "<string>",
"state": "<string>",
"zip_code": "<string>",
"county": "<string>",
"raw": "<string>"
},
"suspensions": [
{
"start_date": "2023-12-25",
"end_date": "2023-12-25",
"reason": "<string>"
}
]
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Path Parameters
Query Parameters
Two-letter state code matching the license number. Supported: CA, TX, NY, FL, IL.