PinkPages
PinkPages is an Australian online business directory where people look up local businesses by name, category, and area, and its listings act as citations that support a business's visibility in local search.
Keeping a business current on PinkPages usually means editing each profile directly in the directory, and for a company with many locations that turns into the same edits repeated across every entry. Listings API automates that work, letting users create, manage, and sync PinkPages listings through one unified API.
With just a few API calls, you can publish a business to PinkPages using details like business name, category, address, phone, website, and hours. Listings API lets you:
- Create a location and publish it to PinkPages alongside every other citation on your plan.
- Update business name, category, address, phone, website, or hours in a single call.
- Track publishing status and read the live listing URL once the update clears.
What the API does on PinkPages
Listing sync
Name, address, phone, hours, description, categories, website, and photos publish to PinkPages 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 PinkPages 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 PinkPages 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 PinkPages
PinkPages is available on the Enterprise plan.
PinkPages + Listings API
How do I publish a business to PinkPages through the API?
Send the business details to createLocation, name, category, address, phone, website, and hours, and Listings API publishes it to PinkPages along with the other citations on your plan. To change anything afterward, call updateLocation and the edit propagates the same way.
How do I update a phone number or hours on a PinkPages listing?
Send the new values with updateLocation. One call covers name, category, address, phone, website, and hours, so you never edit the PinkPages profile manually.
How long does it take for a listing to appear on PinkPages?
Publishing is asynchronous. Submissions clear in anywhere from a few hours to a few days depending on the directory, so build for eventual confirmation rather than an instant result.
How do I check whether my PinkPages listing is live?
Call GET /api/v4/locations/{id}/listings/premium. It returns the per site publish status and the live PinkPages listing URL once the update clears, so you verify from the response instead of watching the directory.
Do I need a PinkPages account or login to use the API?
No. You authenticate with one Listings API key and never create a PinkPages account or credential. Listings API is independent and not affiliated with PinkPages.
Can I publish posts or reply to reviews on PinkPages?
No. PinkPages supports listing sync only. Posts and review replies are available on Google and Facebook, and analytics on Google, Bing, and Facebook; on PinkPages the API keeps your business details accurate and consistent.
Which plan includes PinkPages?
PinkPages is part of the Enterprise plan. Once you are on that plan, every location you publish is submitted to PinkPages along with the other citations covered.
Why sync a listing to PinkPages at all?
PinkPages listings act as citations for businesses serving Australian customers, and consistent name, address, and phone details across directories support local search visibility. Publishing by API keeps that citation accurate as the business changes.