# MortgageLogic.news > Canadian mortgage rate news, analysis, and industry insight for mortgage professionals. MortgageLogic.news publishes daily "sparks" — short-form articles on Canadian mortgage rates, bond yields, lender changes, regulatory news, and industry commentary. The main site is a React single-page app, so fetching article URLs directly returns only meta tags, not the article body. ## Machine-readable article URLs To read the full HTML body of any published spark, use the render endpoint: ``` https://aijeijqmozlpnbhtedbu.supabase.co/functions/v1/render-spark?slug={SLUG} ``` The `{SLUG}` value is the article's URL path with the leading slash removed. Examples: - Human URL: https://mortgagelogic.news/user/my-article-slug Machine URL: https://aijeijqmozlpnbhtedbu.supabase.co/functions/v1/render-spark?slug=user/my-article-slug - Human URL: https://mortgagelogic.news/some-staff-article Machine URL: https://aijeijqmozlpnbhtedbu.supabase.co/functions/v1/render-spark?slug=some-staff-article Each machine URL returns a fully-rendered HTML document with the headline, byline, published date, article body, and a canonical link back to the human URL. Pro-only (paywalled) articles return a stub instead of the body. ## Discovery Every spark page in the SPA advertises its machine-readable URL via: ``` ``` ## Sitemap The full list of published sparks (with human URLs) is at: https://mortgagelogic.news/sitemap.xml ## Contact For API access or data partnerships, see https://mortgagelogic.news/resources/api-docs