Product

Listings Reviews Publishing Analytics MCP server

Network

Network overview Google Business Profile Facebook

Company

Compare How it works Pricing Docs ↗

Account

Sign in Get API key
Network overview See every directory, map, and answer engine in the network, grouped by plan, so you know which citations each tier covers. One write reaches all of them, and fetchPremiumListings reports the live status for each.
Network / Zoom Local Search
Directories Listing sync All plans

Zoom Local Search

Zoom Local Search is an online business directory where people look up local businesses, and its listings act as citations that confirm a company's name, address, and phone number across the web.

Keeping a Zoom Local Search listing accurate usually means editing the business details manually and repeating that work every time a name, address, or phone number changes. Listings API automates that, letting users create, manage, and sync Zoom Local Search listings through one unified API.

With just a few API calls, you can publish a business to Zoom Local Search using details like business name, category, address, phone, website, and hours. Listings API lets you:

  • Create a location and publish it to Zoom Local Search along with every other citation on your plan.
  • Update the business name, category, address, phone, website, or hours with one call.
  • Track publishing status and get the live listing URL.
Capabilities

What the API does on Zoom Local Search

Listing sync

Name, address, phone, hours, description, categories, website, and photos publish to Zoom Local Search from one canonical record. The same write updates the rest of your plan's network.

Publish status you can query

Per site publish state and live listing links are readable back through the API, so you can verify the Zoom Local Search listing from response instead of checking it manually.

Typed SDKs + MCP

Node.js and Python SDKs with full types, plus a hosted MCP server so agents and LLM tools can drive the same API.

Code

Publish and sync your Zoom Local Search listing

Create a location
curl -X POST https://listingsapi.com/api/v4/locations \
  -H "Authorization: API $LISTINGSAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"name":"Acme Dental","description":"Acme Dental is a family-owned dental practice in downtown New York offering preventive care, cosmetic dentistry, orthodontics, and emergency appointments. The team pairs modern equipment with a gentle, patient-first approach, and same-week visits are available.","subCategoryId":1432,"street":"123 Jump Street","city":"New York","stateIso":"NY","postalCode":"10013","countryIso":"US","phone":"6443859313"}}'
Update the location
curl -X POST https://listingsapi.com/api/v4/locations/update \
  -H "Authorization: API $LISTINGSAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"id":"TG9jYXRpb246MTgwMDI4OQ==","phone":"8073326999","street":"19 Trinity Enclave Main Rd"}}'
Fetch sync status
curl https://listingsapi.com/api/v4/locations/TG9jYXRpb246MTgwMDI4OQ==/listings/premium \
  -H "Authorization: API $LISTINGSAPI_KEY"
Plans

Which plans include Zoom Local Search

Zoom Local Search is available on every plan, starting with Launch.

Launch
$99/mo
Includes Zoom Local Search
Growth
$499/mo
Includes Zoom Local Search
Enterprise
Custom
Includes Zoom Local Search
FAQ

Zoom Local Search + Listings API

How do I publish a business to Zoom Local Search through the API?

Call createLocation with the business name, category, address, phone, website, and hours. Listings API publishes that record to Zoom Local Search as part of the citations on your plan. When something changes later, call updateLocation and the edit propagates on the next sync.

How long does it take for a listing to go live?

Publishing runs asynchronously, so a new or updated listing can take anywhere from a few hours to a few days to appear on Zoom Local Search. Call GET /api/v4/locations/{id}/listings/premium to read the current per site publish status and the live listing URL once it clears. That way you confirm from the API response instead of watching the directory.

Do I need a Zoom Local Search account or login to publish?

No. You do not register on Zoom Local Search or hold any credential there. One Listings API key authenticates every call, and Listings API is an independent service, not affiliated with Zoom Local Search.

Can I schedule posts or reply to reviews on Zoom Local Search?

No. Zoom Local Search supports listing sync only. Posts and review replies are available on Google and Facebook, and analytics on Google, Bing, and Facebook, while Zoom Local Search itself carries the core listing data as a citation.

How do I update a business's address or phone number?

Call updateLocation with the new values for name, category, address, phone, website, or hours. The change is queued and synced to Zoom Local Search along with your other citations, so you edit once through the API rather than in the directory.

Which plan includes Zoom Local Search?

Zoom Local Search is included on every plan, starting with Launch. Every location you create publishes there automatically alongside the other citations on your plan, with no extra setup.

How do I confirm the listing is live and correct?

Read GET /api/v4/locations/{id}/listings/premium. It returns the per site publish status and the live Zoom Local Search URL once the record clears, so you verify straight from the API response instead of searching the directory yourself.