connectli.com APIconnectli.com ↗
Search and retrieve contact information for thousands of businesses across Nassau and Suffolk County on Long Island through the ConnectLI Business Directory. Quickly find phone numbers, addresses, and other key business details to connect with local companies in your area.
curl -X POST 'https://api.parse.bot/scraper/d9b117f0-b797-47a5-be3b-7bd2f0fe8dd4/list_businesses' \
-H 'X-API-Key: $PARSE_API_KEY' \
-H 'Content-Type: application/json' \
-d '{}'List all businesses in a specified category with their contact information including name, phone, address, website, and description. Returns all listings for the category in a single paginated response.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| categoryrequired | string | Business category to list. Accepted values: architects, insurance, law_firms, it_companies. |
| per_page | integer | Number of results per page. |
{
"type": "object",
"fields": {
"page": "integer",
"category": "string",
"listings": "array of business objects with id, name, description, phone, address, latitude, longitude, website, permalink",
"per_page": "integer",
"max_pages": "integer",
"total_found": "integer"
},
"sample": {
"page": 1,
"category": "architects",
"listings": [
{
"id": 1562,
"name": "Bello Architects",
"phone": "+1 (555) 012-3456",
"address": "123 Main St, Springfield, IL 62704",
"website": "http://joebelloarchitects.com/",
"latitude": "40.678239",
"longitude": "-73.4552269",
"permalink": "https://connectli.com/business/bello-architects/",
"description": "John Doe Architect P.C. is a full service architectural firm that specializes in integrating all elements of design: architecture, interiors and landscape in residential and commercial settings."
}
],
"per_page": 50,
"max_pages": 1,
"total_found": 10
}
}About the connectli.com API
The connectli.com API on Parse exposes 1 endpoint for the publicly available data on connectli.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.