Skip to main content
GET
/
businesses
Get Businesses by Location
curl --request GET \
  --url https://services.leadconnectorhq.com/businesses \
  --header 'Authorization: Bearer <token>' \
  --header 'Version: <version>'
{
  "businesses": [
    {
      "id": "63771dcac1116f0e21de8e12",
      "name": "Microsoft",
      "locationId": "<string>",
      "phone": "<string>",
      "email": "abc@microsoft.com",
      "website": "microsoft.com",
      "address": "<string>",
      "city": "<string>",
      "description": "<string>",
      "state": "<string>",
      "postalCode": "<string>",
      "country": "united states",
      "updatedBy": {},
      "createdBy": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Query Parameters

locationId
string
required
Example:

"5DP4iH6HLkQsiKESj6rh"

limit
string
default:100
Example:

"100"

skip
string
default:0
Example:

"10"

Response

Successful response

businesses
object[]
required

Business Response

Last modified on March 4, 2026