FFL Service API Endpoints
Search and retrieve Federal Firearms License data
🔍 Available Search Methods
Access comprehensive FFL data through location-based searches or direct license lookups. Our API provides real-time access to the complete Federal Firearms License database.
GET
Search FFLs by Location
Find all Federal Firearms License holders within a specified radius of any US zip code.
Endpoint
/services/ffl
Query Parameters
Example Request
GET /services/ffl?zipcode=33875&radius=5
Example Response
{
"status": "ok",
"data": [
{
"id": 23427,
"license_number": "1-59-55-1-5A-6020",
"license_name": "HEARTLAND FIREARMS INC",
"street_address": "10282 PAYNE ROAD",
"city": "SEBRING",
"state": "FL",
"zip_code": "33875",
"phone": "8635592443",
"latitude": "27.389726",
"longitude": "-81.481951",
"distance": 1.6
}
],
"meta": {
"query": {
"zipcode": "33875",
"radius": 5
}
}
}
GET
Lookup FFL by License Number
Retrieve detailed information about a specific FFL using its license number.
Endpoint
/services/ffl/license/{ffl-license}
Query Parameters
Example Request
GET /services/ffl/license/1-59-55-1-5A-6020
Example Response
{
"status": "ok",
"data": {
"id": 23427,
"license_number": "1-59-55-1-5A-6020",
"license_name": "HEARTLAND FIREARMS INC",
"street_address": "10282 PAYNE ROAD",
"city": "SEBRING",
"state": "FL",
"zip_code": "33875",
"phone": "8635592443",
"latitude": "27.389726",
"longitude": "-81.481951"
}
}