AussieWeb
AussieWeb is an Australian online business directory where people find local businesses by category and location, helping businesses show up when nearby customers are searching.
Keeping business details accurate on AussieWeb typically means editing each location's entry manually, which gets tedious once you manage more than a handful of them. Listings API automates that work, letting users create, manage, and sync AussieWeb listings through one unified API.
With just a few API calls, you can publish a business to AussieWeb using details like business name, category, address, phone, website, and hours. Listings API lets you:
- Create a location and publish it to AussieWeb alongside every other citation on your plan in the same call.
- Update the business name, category, address, phone, website, or hours with a single call.
- Track publishing status and pull the live AussieWeb listing URL.
What the API does on AussieWeb
Listing sync
Name, address, phone, hours, description, categories, website, and photos publish to AussieWeb 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 AussieWeb 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 AussieWeb 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 AussieWeb
AussieWeb is available on the Enterprise plan.
AussieWeb + Listings API
How do I publish a business to AussieWeb through the API?
Call createLocation with the business name, category, address, phone, website, and hours, then publish it. The same request pushes the listing to AussieWeb and to every other citation on your plan, so you never submit to the directory separately.
How do I update a listing after it is live?
Send the changed fields to updateLocation. One call updates the business name, category, address, phone, website, or hours, and Listings API propagates the edit to AussieWeb and the rest of your citations.
How long does it take for a listing to appear on AussieWeb?
Publishing is asynchronous. A submission usually clears within a few hours, though some updates can take a few days depending on the directory's processing. You do not need to hold the request open; the status resolves on its own.
How do I check whether my AussieWeb listing went live?
Call GET /api/v4/locations/{id}/listings/premium. It returns the per site publish status and the live AussieWeb listing URL once the update clears, so you confirm from the response instead of searching the directory manually.
Do I need an AussieWeb account or login to publish?
No. You authenticate every call with a single Listings API key, and you never register or manage a separate AussieWeb account. Listings API is independent and not affiliated with AussieWeb.
Can I post updates or reply to reviews on AussieWeb?
No. AussieWeb supports listing sync only. Posts and review replies are available on Google and Facebook, and analytics are available on Google, Bing, and Facebook. On AussieWeb, Listings API keeps your core business details accurate and consistent.
Which plan includes AussieWeb?
AussieWeb is part of the Enterprise plan. Once you are on it, publishing a location sends the listing to AussieWeb along with the other citations your plan covers, all from the same API call.