
4 Aug 2026 · 3 min read · Updated 4 Aug 2026

If you run a money site, newsletter or comparison page, the hard part isn’t writing the table — it’s keeping it true. UK savings rates move often enough that yesterday’s “best easy access” can be wrong by lunchtime, and scraping provider sites is a full-time maintenance job.
A UK savings rates API solves that by giving you structured, queryable data for the products you already list: current AERs, categories, providers and (when you need it) history. DepositScout’s feed is built for that use case. Overview and access requests live on the API Access page.
A publishable savings table usually needs more than a single percentage:
DepositScout exposes those pieces as JSON over REST — live rates via GET /v1/rates, movements via GET /v1/history, and provider metadata via GET /v1/providers.
Bank marketing pages change layout without warning. Bonus terms hide in footnotes. The same provider appears under two trading names. Your CMS still needs a clean row: provider, product, AER, category, last checked.
An API doesn’t remove editorial judgement — you still choose which accounts to feature and how to explain caveats — but it removes the brittle fetch layer. You pull normalised fields on a schedule, then render your own table design and copy.
After access is provisioned, a live-rates call looks like:
curl https://api.depositscout.com/v1/rates \
-H "Authorization: Bearer $DS_API_KEY"
You’ll get structured products you can map into your CMS or edge cache. A simplified object:
{
"provider": "Zopa",
"product": "Smart Saver",
"category": "Easy Access",
"aer": 4.42,
"fscs_protected": true,
"updated_at": "2026-07-07T09:00:00Z"
}
Pair that with /v1/history when your article needs a line like “this rate has held for X days” or a small sparkline beside the AER.
Some publisher funnels mix savings tables with switching bonuses. DepositScout also ships GET /v1/switch-offers for live current-account switch deals — useful when your money section covers both “best saver” and “best switch” in the same hub.
This is licensed market data, not an open public dump. Request access with a short brief: which tables you run, how often you refresh, and whether you need history from day one. Use the form on /api or email [email protected].
If you’re still evaluating the whole product set, start with the getting-started guide: Getting started with the DepositScout API.
Tell us what you're building and we'll get back to you about API access and commercial licensing.
[email protected]