Yoys Poland
Yoys Poland runs its listing platform entirely in Polish, from account signup to business categories, covering suppliers and service providers in cities including Poznan, Wroclaw, and Jaworzno.
Yoys Poland presents its entire interface, from signup to the category list, in Polish, unlike the English-language Canada and Australia editions of the same network. That localization does not change the update problem: a name, category, or address change still has to be made by hand inside the Yoys Poland dashboard, then repeated on every other citation you manage. Listings API removes the repeat step and syncs the change everywhere at once.
Publishing to Yoys Poland takes a few API calls with the business name, category, address, phone, website, and hours. Listings API lets you:
- Create a location and publish it to Yoys Poland together with every other citation on your plan.
- Update the name, category, address, phone, website, or hours with one call, regardless of the destination site's own language.
- Read back the publish status and the live Yoys Poland listing URL.
What the API does on Yoys Poland
Listing sync
Name, address, phone, hours, description, categories, website, and photos publish to Yoys Poland 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 Yoys Poland 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 Yoys Poland 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 Yoys Poland
Yoys Poland is available on the Enterprise plan.
Yoys Poland + Listings API
How do I add a business to Yoys Poland using the API?
Call createLocation with the business name, category, address, phone, website, and hours in whichever language you use for the rest of your data. The location publishes to Yoys Poland along with the other citations on your plan, even though the destination site's own interface is Polish.
Do I need to speak Polish to publish to Yoys Poland?
No. The API call and its fields work the same regardless of the destination site's interface language, since you never open that interface yourself. Yoys Poland's signup and category pages are in Polish, but Listings API handles the publish and later updates without you translating anything or opening the Yoys Poland dashboard.
How do I update a business already listed on Yoys Poland?
Send the changed fields, such as a new address or phone number, with updateLocation and the location ID returned when the business was created. The update reaches Yoys Poland and the rest of your plan's citations in the same call, so no separate edit inside the Yoys Poland dashboard is needed.
How long does a Yoys Poland listing take to go live?
Publishing is asynchronous and generally clears within a few hours to a few days, depending on how the directory processes new submissions. Call GET /api/v4/locations/{id}/listings/premium to confirm the per site status and get the live Yoys Poland listing URL once the update goes through.
Is a Yoys Poland account needed to publish through the API?
No. One Listings API key covers authentication for every call, and no account or password ever gets created on Yoys Poland itself. Listings API is an independent service and is not affiliated with Yoys Poland or its operator, so no login exists for you to manage there.
What does Yoys Poland not support through the API?
Yoys Poland supports listing sync only, included on the Enterprise plan alongside the rest of that plan's citation network. Posts, review replies, and analytics are not available there; Listings API limits those features to Google and Facebook, with Bing added only for analytics reads.