LocalMint
LocalMint is an online business directory where people look up a company's store hours, address, and phone number before they head out to visit.
Keeping a business accurate on a directory like LocalMint usually means editing each location's data manually and repeating those edits every time the hours, an address, or a phone number changes. Listings API automates that work, letting users create, manage, and sync LocalMint listings through one unified API.
With just a few API calls, you can publish a business to LocalMint using details like business name, category, address, phone, website, and hours. Listings API lets you:
- Create a location and publish it to LocalMint along with every other citation on your plan.
- Update business name, category, address, phone, website, or hours with one call.
- Track publishing status and get the live listing URL.
What the API does on LocalMint
Listing sync
Name, address, phone, hours, description, categories, website, and photos publish to LocalMint 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 LocalMint 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.
Publish and sync your LocalMint listing
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"}}' 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"}}' curl https://listingsapi.com/api/v4/locations/TG9jYXRpb246MTgwMDI4OQ==/listings/premium \
-H "Authorization: API $LISTINGSAPI_KEY" Which plans include LocalMint
LocalMint is available on every plan, starting with Launch.
LocalMint + Listings API
How do I publish a business to LocalMint through the API?
Call createLocation with the business name, category, address, phone, website, and hours, and Listings API publishes it to LocalMint along with the rest of the citations on your plan. When something changes later, call updateLocation with the new values and the correction syncs on the next publish.
How long does it take for a listing to appear on LocalMint?
Publishing is asynchronous. Once you submit a location, the update is queued and can take anywhere from a few hours to a few days to go live on LocalMint. The API call returns right away, so you check on progress separately rather than waiting on the request.
How do I confirm a listing actually went live?
Call GET /api/v4/locations/{id}/listings/premium. It returns the per site publish status for LocalMint and the live listing URL once the update clears, so you verify from the response instead of searching the directory yourself.
Do I need a LocalMint account or credential?
No. You do not register with LocalMint or hold any key there. A single Listings API key authenticates every call and Listings API handles the submission on your behalf. Listings API is independent and not affiliated with LocalMint.
Can I update store hours or an address after publishing?
Yes. Call updateLocation with the fields that changed, whether that is hours, address, phone, website, category, or business name, and the update propagates to LocalMint on the next sync. Poll GET /api/v4/locations/{id}/listings/premium to confirm the change landed.
Can I publish posts or reply to reviews on LocalMint?
No. LocalMint supports listing sync only. Posts and review replies are available on Google and Facebook, and analytics such as views and actions come from Google, Bing, and Facebook. On LocalMint, Listings API keeps the core business details accurate.
Which plan includes LocalMint?
LocalMint is included on every plan, starting with Launch. Every location you publish reaches LocalMint alongside the other citations your plan covers, from one API call.