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

DepositScout’s API turns the UK savings market into structured data you can query — live rates, historical movements, provider metadata and current-account switch offers — without scraping bank sites or maintaining brittle parsers.
This guide covers what you get today, who it’s for, how to request access, and what a first successful call looks like. For the marketing overview, see the API Access page.
Four core products ship now. Each is a REST endpoint returning JSON:
GET /v1/rates — current AERs across Easy Access, Fixed Rate, Notice, Cash ISA and Regular Saver accounts, normalised for software.GET /v1/history — how every product has moved over time for charts, benchmarking and analysis.GET /v1/providers — bank and building society metadata, including FSCS coverage and eligibility signals.GET /v1/switch-offers — live switching bonuses, deadlines, eligibility rules and linked saver products.More feeds (mortgage rates, base-rate history and savings analytics) are on the roadmap; the same access conversation covers what you need now and what you’ll want next.
Teams use DepositScout when they need production-ready UK savings data rather than a one-off scrape:
Access is commercial and licensed. There isn’t a public self-serve signup yet — you request access, we learn what you’re building, and we provision keys once commercial terms are agreed.
Include enough detail that we can map you to the right feeds — for example “best-buy table for easy access + ISA, refreshed hourly” is far more useful than “need rates API”.
After you have a key, a minimal live-rates call looks like this:
curl https://api.depositscout.com/v1/rates \
-H "Authorization: Bearer $DS_API_KEY"
Responses are JSON. A simplified product object looks like:
{
"provider": "Zopa",
"product": "Smart Saver",
"category": "Easy Access",
"aer": 4.42,
"fscs_protected": true,
"updated_at": "2026-07-07T09:00:00Z"
}
Field names and nesting are designed for software: consistent provider names, account categories and structured attributes — not free-text scraped from marketing pages.
DepositScout continuously tracks UK banks and building societies so product and rate changes land in the feed quickly. Historical rate moves are retained by default, so charts and analytics don’t depend on you having been collecting since day one.
That combination — live coverage plus history — is what most comparison, publishing and AI teams need to ship without standing up their own market-data stack.
/v1/rates./v1/history for sparklines, “rate cut” badges or trend copy./v1/providers./v1/switch-offers.Keep API keys server-side. Don’t embed them in mobile apps or public frontends.
If you’re evaluating the API for a product roadmap:
We’ll take it from there — from enquiry to a keyed environment you can build against.
Tell us what you're building and we'll get back to you about API access and commercial licensing.
[email protected]