Get search suggestions (autocomplete)
Returns contractor names matching the query prefix for autocomplete. Fast and lightweight - returns only name, license number, and type. Respects license type filter if provided.
Query Parameters
Search query (minimum 2 characters)
0 <= length <= 200Max results (default 5, max 10)
5^-?(?:0|[1-9]\d*)$int321 <= value <= 10Filter by license type name (optional)
0 <= length <= 200falseResponse Body
application/json
curl -X GET "https://loading/api/docs-proxy/v1/licenses/suggest"[
{
"licenseNumber": "string",
"name": "string",
"dbaName": "string",
"licenseType": "string"
}
]Flexible search across name, DBA, and license number with optional filters GET
Normalizes input (strips punctuation, handles spacing) and searches: - Company/person name - DBA (doing business as) name - License number Can be combined with filters for license type, status, city, and entity type. Results sorted by enforcement actions first, then alphabetically. If no filters are provided, returns all licenses paginated.
Get top cities by license count GET
Next Page