Documentation menu
Get newly issued liquor licenses (fresh leads)
A new liquor license is a new bar or restaurant opening, pull them by state for POS, payments and supplier prospecting.
curl --request GET \
--url 'https://newliquorlicenses-us-liquor-license-data.p.rapidapi.com/liquor_license?state=TX&issued_after=2026-06-01&sort_by=issued_date&sort_order=desc&limit=200' \
--header 'x-rapidapi-host: newliquorlicenses-us-liquor-license-data.p.rapidapi.com' \
--header 'x-rapidapi-key: YOUR_RAPIDAPI_KEY'import requests
url = "https://newliquorlicenses-us-liquor-license-data.p.rapidapi.com/liquor_license?state=TX&issued_after=2026-06-01&sort_by=issued_date&sort_order=desc&limit=200"
headers = {"x-rapidapi-host": "newliquorlicenses-us-liquor-license-data.p.rapidapi.com", "x-rapidapi-key": "YOUR_RAPIDAPI_KEY"}
resp = requests.get(url, headers=headers)
print(resp.json())const res = await fetch("https://newliquorlicenses-us-liquor-license-data.p.rapidapi.com/liquor_license?state=TX&issued_after=2026-06-01&sort_by=issued_date&sort_order=desc&limit=200", {
headers: {
"x-rapidapi-host": "newliquorlicenses-us-liquor-license-data.p.rapidapi.com",
"x-rapidapi-key": "YOUR_RAPIDAPI_KEY",
},
});
const data = await res.json();
console.log(data);<?php
$ch = curl_init("https://newliquorlicenses-us-liquor-license-data.p.rapidapi.com/liquor_license?state=TX&issued_after=2026-06-01&sort_by=issued_date&sort_order=desc&limit=200");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"x-rapidapi-host: newliquorlicenses-us-liquor-license-data.p.rapidapi.com",
"x-rapidapi-key: YOUR_RAPIDAPI_KEY",
]);
echo curl_exec($ch);require "net/http"
require "uri"
uri = URI("https://newliquorlicenses-us-liquor-license-data.p.rapidapi.com/liquor_license?state=TX&issued_after=2026-06-01&sort_by=issued_date&sort_order=desc&limit=200")
req = Net::HTTP::Get.new(uri)
req["x-rapidapi-host"] = "newliquorlicenses-us-liquor-license-data.p.rapidapi.com"
req["x-rapidapi-key"] = "YOUR_RAPIDAPI_KEY"
res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |h| h.request(req) }
puts res.bodypackage main
import (
"fmt"
"io"
"net/http"
)
func main() {
req, _ := http.NewRequest("GET", "https://newliquorlicenses-us-liquor-license-data.p.rapidapi.com/liquor_license?state=TX&issued_after=2026-06-01&sort_by=issued_date&sort_order=desc&limit=200", nil)
req.Header.Add("x-rapidapi-host", "newliquorlicenses-us-liquor-license-data.p.rapidapi.com")
req.Header.Add("x-rapidapi-key", "YOUR_RAPIDAPI_KEY")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}import java.net.URI;
import java.net.http.*;
HttpRequest req = HttpRequest.newBuilder()
.uri(URI.create("https://newliquorlicenses-us-liquor-license-data.p.rapidapi.com/liquor_license?state=TX&issued_after=2026-06-01&sort_by=issued_date&sort_order=desc&limit=200"))
.header("x-rapidapi-host", "newliquorlicenses-us-liquor-license-data.p.rapidapi.com")
.header("x-rapidapi-key", "YOUR_RAPIDAPI_KEY")
.build();
HttpResponse<String> res = HttpClient.newHttpClient()
.send(req, HttpResponse.BodyHandlers.ofString());
System.out.println(res.body());Each result gives the business name, city and issue date, a fresh lead.
Ready to build?Subscribe on RapidAPI to get your key and start calling NewLiquorLicenses in minutes.
Get your API key →