Rest Service Information

REST services:

Purpose: Lookup FFL list by zip code

URL: http://api.findfflbyzip.com/rs/findByZip

Method: POST

Headers:

Content-type: application/json

customer-key: userApiKey

Request: (first four digits of zip)

{
"zip": "3013"
}
 
Response:
[
   {
    "id": "158223013D10984",
    "licenseName": "WAHNER, BRIAN KEITH",
    "businessName": "WESTERN ARMS",
    "premiseAddress": "407 AMSTERDAM WAY\nDALLAS, GA 30132"
  },
  {
    "id": "158223013F12950",
    "licenseName": "SERGEANT'S ARMS LLC",
    "businessName": "",
    "premiseAddress": "228 WOODRIDGE DRIVE\nDOUGLASVILLE, GA 30134"
  },
  {
   "id": "158097012H04038",
   "licenseName": "ALBERTSON, WILLIAM FRANKLIN JR",
   "businessName": "A & B SALES CO",
   "premiseAddress": "7615 GRANITE DR\nDOUGLASVILLE, GA 30134"
  }
]
 
 

 

Purpose: Lookup FFL by ID for list above

URL: http://api.findfflbyzip.com/rs/findById

Method: POST

Headers:

Content-type: application/json

customer-key: userApiKey

Request: (ID from list above)

"id":"158097013C06625"
}

Response:

{

   "id": "158097013C06625",
   "license": "1-58-097-01-3C-06625",
   "expDate": "March 1, 2023",
   "licenseName": "GAGE TACTICAL LLC",
   "businessName": "",
   "premiseAddress": "2527 BOMAR RD\nDOUGLASVILLE, GA 30135",
   "address": "2527 BOMAR RD",
   "city": "DOUGLASVILLE",
   "state": "GA",
   "premiseZip": "30135",
   "mailingAddress": "P O BOX 2098\nDOUGLASVILLE, GA 30133",
   "phone": "770-361-6110"
}