This page documents the machine-readable interfaces Happy Housekeepers publishes for
search engines, AI agents, and developers. Everything below is read-only and public —
nothing here requires authentication.
The standard WordPress REST API root, listing all registered routes on this site.
GET /wp-json/application/jsonA normalized, agent-friendly listing of our cleaning services. Custom fields and
categories are included automatically when the underlying service listing defines them.
GET /wp-json/happyhousekeepers/v1/servicesapplication/json| Parameter | Type | Default | Description |
|---|---|---|---|
per_page |
integer | 50 | Maximum results (1–100). |
category |
string | — | Filter by taxonomy term slug. |
search |
string | — | Search service title and content. |
| Field | Description |
|---|---|
id |
Service listing ID. |
title |
Service name. |
excerpt |
Plain-text summary. |
url |
Public page for this service. |
updated_at |
ISO 8601 last-modified timestamp. |
categories |
Object of taxonomy slug → array of term names. |
request_quote_url |
Where to request a quote for any service. |
custom_fields |
Optional. Any additional fields explicitly registered as public on this service type. |
curl "https://happyhousekeepers.com/wp-json/happyhousekeepers/v1/services?per_page=5"
{
"source": "https://happyhousekeepers.com/wp-json/wp/v2/services",
"count": 1,
"services": [
{
"id": 42,
"title": "House Cleaning",
"excerpt": "Regular and one-time residential cleaning.",
"url": "https://happyhousekeepers.com/services/house-cleaning/",
"updated_at": "2026-07-01T09:00:00-06:00",
"categories": { "service_type": ["Residential"] },
"request_quote_url": "https://happyhousekeepers.com/request-a-quote/"
}
]
}
Standard WordPress blog post collection.
GET /wp-json/wp/v2/postsStandard WordPress page collection.
GET /wp-json/wp/v2/pagesThe raw, unnormalized WordPress REST endpoint for the services custom post type,
for clients that prefer working directly with WordPress’s native schema instead of
the normalized Services API above.
GET /wp-json/wp/v2/services (exact path depends on the registered REST base)/.well-known/api-catalog. A single machine-readable index of every endpoint on this page, plus the Request a Quote and Gift Certificates actions./.well-known/ai-catalog.json. Protocol-agnostic discovery document (ai-catalog.io spec) referencing the RFC 9727 catalog above./llms.txt. Plain-language guidance for LLMs about this site.Accept: text/markdown./robots.txt (search, AI input, and AI training preferences).