API Documentation
Developer access to local FCC License Data
JSON Lookup
You can retrieve raw license data in JSON format by performing a GET request to the following endpoint:
GET /api/license/{callsign}
Example Usage
Retrieve details for call sign KK4MA:
curl http://fcc.pcpackrat.net/api/license/KK4MA
Response Format
{
"call_sign": "KK4MA",
"license_status": "A",
"radio_service_code": "HA",
"grant_date": "2019-03-12",
"expired_date": "2029-03-12",
"entity_name": "Doe, John",
"first_name": "John",
"last_name": "Doe",
"city": "Anytown",
"state": "XY",
"zip_code": "12345",
"operator_class": "E"
}