Read one category or section page
One category or section page, addressed by its slug path (FR-63b/c).
/v1/public/help-centre/containers/{container_path}No credential- Operation id
- get_container
- Access
- Public by design. No credential is required or consulted.
/v1/public/help-centre/containers/{container_path}One category or section page, addressed by its slug path (FR-63b/c).
The path is the slug trail with no leading slash, so billing/invoices
reaches the Invoices section under the Billing category. Leading, trailing
and repeated slashes are ignored rather than refused.
Categories and sections are one table, so this is one handler. kind on
the container says which one you have, and children carries the nested
tree rather than a flattened list.
articles holds only the articles filed directly in this container, paged
by limit and offset, and article_total is the count across all pages.
Articles further down the tree belong to their own container's page.
Access: no credential.
Path Parameters
Query Parameters
1 <= value <= 100300 <= value0Header Parameters
Response Body
application/json
application/json
curl -X GET "https://example.com/v1/public/help-centre/containers/string"{ "site": { "name": "Northwind Support", "default_locale": "en-gb", "locale": "en-gb", "locales": [ "en-gb", "de-de" ], "brand": { "logo_url": "https://cdn.northwind.example/logo.svg", "colour": "#0f1522", "title": "Northwind Support" }, "path_prefix": "/help", "home_url": "https://help.northwind.example/help", "search_url": "https://help.northwind.example/help/search" }, "container": { "id": "6c1f9a2e-77b4-4c3a-9f21-0d5a2b8e4411", "kind": "section", "name": "Invoices", "description": "Reading, downloading and correcting an invoice.", "slug": "invoices", "path": "billing/invoices", "url": "https://help.northwind.example/help/billing/invoices", "position": 1, "article_count": 6, "total_article_count": 6, "children": [] }, "breadcrumbs": [ { "name": "Billing", "path": "billing", "url": "https://help.northwind.example/help/billing" }, { "name": "Invoices", "path": "billing/invoices", "url": "https://help.northwind.example/help/billing/invoices" } ], "children": [], "articles": [ { "article_id": "b7d3c8e1-4f2a-4d61-b0a9-5c8e3f1d7a04", "translation_id": "d41c5b8a-2e69-4f13-8a77-9b0c4e2d6f55", "locale": "en-gb", "title": "Download a past invoice", "slug": "download-a-past-invoice", "excerpt": "Every invoice stays available for seven years.", "container_path": "billing/invoices", "url": "https://help.northwind.example/help/billing/invoices/download-a-past-invoice", "position": 0, "promoted": true, "breadcrumbs": [ { "name": "Billing", "path": "billing", "url": "https://help.northwind.example/help/billing" }, { "name": "Invoices", "path": "billing/invoices", "url": "https://help.northwind.example/help/billing/invoices" } ], "updated_at": "2026-07-30T11:02:14+00:00", "published_at": "2026-03-11T08:00:00+00:00", "vote_count": 41, "vote_sum": 33 } ], "article_total": 6}