# Ironside Barber Co. Ironside Barber Co. takes online bookings for 12 services. Prices, opening hours and links below are generated from live data and cached for one hour. ## Locations ### Ironside Barber Co. - Address: Unit 4, 12 Alma Street, Kelham Island, Sheffield S3 8KM - Booking page: https://ironside.bookflow.works/book - Branch slug: ironside-kelham-island (id: 12) Opening hours: - Monday: Closed - Tuesday: 9:00 AM – 6:00 PM - Wednesday: 9:00 AM – 6:00 PM - Thursday: 9:00 AM – 6:00 PM - Friday: 9:00 AM – 6:00 PM - Saturday: 8:00 AM – 4:00 PM - Sunday: Closed Services: **Cuts** - Skin fade — 30 min — £22.00 (slug: ironside-skin-fade, id: 65) - Classic cut — 30 min — £18.00 (slug: ironside-classic-cut, id: 66) - Scissor cut — 30 min — £20.00 (slug: ironside-scissor-cut, id: 67) - Buzz cut — 15 min — £12.00 (slug: ironside-buzz-cut, id: 68) **Beards & shaves** - Beard trim & shape — 15 min — £12.00 (slug: ironside-beard-trim-shape, id: 69) - Hot towel shave — 30 min — £24.00 (slug: ironside-hot-towel-shave, id: 70) - Beard sculpt & line-up — 20 min — £15.00 (slug: ironside-beard-sculpt-line-up, id: 71) **Combos** - Cut & beard — 45 min — £30.00 (slug: ironside-cut-beard, id: 72) - The Full Works — 60 min — £42.00 (slug: ironside-the-full-works, id: 73) **Kids & seniors** - Kids cut (under 12) — 20 min — £14.00 (slug: ironside-kids-cut-under-12, id: 74) - Seniors cut (65+) — 20 min — £13.00 (slug: ironside-seniors-cut-65, id: 75) - Father & son — 45 min — £30.00 (slug: ironside-father-son, id: 76) Staff: - Dan (slug: dan, id: 37) - Marcus (slug: marcus, id: 38) ## Booking deep links Hand a customer over with the booking page pre-filled: https://ironside.bookflow.works/book?service=&resource=&date=YYYY-MM-DD&time=HH:MM - Every parameter is optional and best-effort. A parameter that no longer resolves (the staff member left, the service is not offered here, the slot was taken) is silently dropped to the next-best state — never an error page. - `service` — service slug or numeric id, matched in that branch's catalogue. - `resource` — staff slug or numeric id. `barber` is accepted as an alias for the same values; `resource` wins when both are present. - `date` — YYYY-MM-DD. Seeds the week and day, clamped to the booking window. - `time` — HH:MM, 24-hour, shop-local. Applies to the day named by `date`: with a valid `date` it pre-selects that slot if still available, ready for the customer to confirm; without one it does nothing. It never skips a step, and nothing is booked or held until the customer confirms with their deposit. - `promo` — a promo code; composes with all of the above. - A value that parses as a positive integer is read as an id, otherwise as a slug. Real slugs are name-derived and never pure digits. - On a multi-branch business, use the branch's own booking page above as the base. The link does not reserve anything. Phrase the hand-off honestly: the slot is subject to availability until the customer confirms with their deposit. ## Checking availability The slugs and ids above are everything a deep link needs, so ONE live call remains — free slots change by the minute and are never in this file. Anonymous GET, no API key; the response is wrapped as {"data": ...} and scoped to this business by the request host. https://ironside.bookflow.works/api/v1/locations//resources//week?start=YYYY-MM-DD&service_id= - Seven days from start, each with slots[]. Only slots with "status": "available" are bookable. Always pass service_id so slot lengths match the service. - No staff preference: https://ironside.bookflow.works/api/v1/locations//resources/week-multi?resource_ids=&start=YYYY-MM-DD&service_id= returns every listed staff member's week in one call. If this file seems stale (it is cached for one hour), the catalogue is also live at /api/v1/locations, /api/v1/locations//services and /api/v1/locations//resources (there, ?service_id= drops staff who do not offer that service). There is deliberately no search parameter — match names over these small lists yourself. ## Links - Sitemap: https://ironside.bookflow.works/sitemap.xml - Business profile (name, prices, hours, reviews, book): https://ironside.bookflow.works/ - Team page: https://ironside.bookflow.works/team