no key · no human

zuplo.com API, RSS and sitemap

Every article zuplo.com publishes, as JSON, through an open API with no key and no signup. 111 of their articles are indexed right now, refreshed hourly.

English#11,561 by volume

Four ways to pull zuplo.com

All four are ours, all four are live, and none of them needs a key.

JSON Search this publisher

Every article we hold from zuplo.com, newest first. Add q= to search inside.

curl -s "https://freenewsapi.ai/v1/search?host=zuplo.com&size=20"open it →

RSS Subscribe in any reader

The same articles as an RSS 2.0 feed. Works in Feedly, Inoreader, Thunderbird — anywhere.

curl -s "https://freenewsapi.ai/v1/rss?host=zuplo.com&size=50"open it →

JSON Feed For apps

JSON Feed 1.1, the same content in a format apps parse natively.

curl -s "https://freenewsapi.ai/v1/feed.json?host=zuplo.com&size=50"open it →

Trimmed For agents

Only the fields an agent needs — title, url, date, language — so the response stays small.

curl -s "https://freenewsapi.ai/v1/search?host=zuplo.com&size=20&fields=title,url,published_at,lang"open it →

Call the API

A live request. Paste it into a terminal and zuplo.com headlines come back as JSON.

bash
curl "https://freenewsapi.ai/v1/search?host=zuplo.com&size=5"
111
articles indexed
1
in the last 30 days
2
median per day
1
languages
1398 min
median crawl lag
08.06 → 23.08
archive depth

Publishing volume

Articles per day over the last 36 days. The busiest hour is 00:00 UTC — that is when the newsroom pushes its main batch.

2026-06-08: 1 articles2026-06-09: 2 articles2026-06-10: 5 articles2026-06-11: 15 articles2026-06-12: 4 articles2026-06-15: 1 articles2026-06-16: 3 articles2026-06-17: 1 articles2026-06-19: 5 articles2026-06-20: 3 articles2026-06-22: 8 articles2026-06-23: 2 articles2026-06-24: 1 articles2026-06-25: 4 articles2026-06-29: 2 articles2026-06-30: 3 articles2026-07-01: 2 articles2026-07-02: 1 articles2026-07-03: 1 articles2026-07-06: 1 articles2026-07-08: 1 articles2026-07-09: 4 articles2026-07-13: 1 articles2026-07-14: 1 articles2026-07-15: 1 articles2026-07-16: 2 articles2026-07-17: 1 articles2026-07-22: 1 articles2026-07-24: 1 articles2026-07-25: 2 articles2026-07-29: 3 articles2026-07-30: 4 articles2026-08-03: 1 articles2026-08-04: 8 articles2026-08-05: 15 articles2026-08-23: 1 articles06-0806-1606-2407-0307-1507-2908-23
bash
curl "https://freenewsapi.ai/v1/stats?host=zuplo.com&top=10"

Publishing rhythm

When zuplo.com actually publishes, by hour of day (UTC) and by day of week — measured from 111 timestamps, not from a schedule they advertise.

00: 1080001: 00102: 00203: 10304: 00405: 00506: 00607: 00708: 00809: 00910: 01011: 11112: 01213: 01314: 11415: 01516: 01617: 01718: 01819: 11920: 02021: 02122: 02223: 023
Mon: 15MonTue: 19TueWed: 30WedThu: 30ThuFri: 12FriSat: 5SatSun: 1Sun

Sections

Sections come from the publisher's own markup, present on 21% of their articles.

Languages

The site identifies itself under zuplo.com, Zuplo, Upstream OAuth 2.0 Client Credentials Auth Policy — separate editions publishing under one domain.

CodeLanguageArticlesShare
enEnglish112100.9%

Latest articles

The 18 most recent zuplo.com articles in the index — the same rows the API returns, rendered for humans.

Run a Load Test Like a Production Launch - Zuplo
2026-08-23 14:05 UTC · API Gateway · Zuplo; Nate Totten
A large API load test is an operational event. Use this playbook to coordinate providers, define success and abort criteria, budget the run, validate business systems, an
Cookbook: Dynamic model routing
2026-08-05 00:00 UTC
Write a custom policy that picks the model per request—for example, always routing to the cheapest active model—using the AI Gateway's public routing primitives.
Cookbook: Custom fallback logic
2026-08-05 00:00 UTC
Write a custom policy that chooses a backup model dynamically—for example, picking any active Anthropic model as the fallback—instead of a fixed entry in the Fallback Mod
API key authentication
2026-08-05 00:00 UTC
Require an app's API key on every request and resolve the calling app from it.
Model Filtering
2026-08-05 00:00 UTC
Restrict an app to specific models with an allow list or block list, and set the default model.
Fallback Model
2026-08-05 00:00 UTC
Add a backup model for provider errors and timeouts, and a cheaper model for when a budget runs out.
AI Gateway policies
2026-08-05 00:00 UTC
Every policy an AI Gateway app can run, and what each one does.
Semantic cache
2026-08-05 00:00 UTC
Return a cached response when a new prompt is close enough to one the app has already answered.
Budgets and Costs
2026-08-05 00:00 UTC
Record an app's usage and enforce its budgets for spend, tokens, and requests.
Quickstart: Write a Custom Policy
2026-08-05 00:00 UTC
Write a custom AI Gateway policy in TypeScript—a content filter that blocks prompts containing banned terms—declare it in policies.json, deploy it with a push, and add it
AI Gateway Source Control
2026-08-05 00:00 UTC
Every AI Gateway project deploys from a Git repository you own. Learn what the scaffolded repository contains, how pushes deploy to production, and which changes require
AI Gateway Policy Templates
2026-08-05 00:00 UTC
Team policy templates give every new app in a team a consistent starting policy chain, with per-policy controls over what each app may change or remove.
AI Gateway Policy Chains
2026-08-05 00:00 UTC
Each AI Gateway app runs an ordered chain of policies selected from the gateway's policies.json. Learn how the chain executes, how options and secrets are inherited, and
Connect to Tunnel Services
2026-08-05 00:00 UTC
Once a tunnel exposes a service, your gateway calls it like any other backend — with a URL. Tunnel services use the service:// scheme instead of a hostname, so a service
IAM Authentication for Your Backend
2026-08-05 00:00 UTC
IAM authentication lets your cloud provider decide whether a request from Zuplo is allowed to reach your backend. Instead of sharing a secret you both store, your gateway
Advanced Tunnel Configuration
2026-08-05 00:00 UTC
The zuplo/tunnel image covers most deployments without configuration beyond TUNNEL_TOKEN. This page is for teams that need more control: pinning versions, tuning the tran
Cache at the CDN
2026-08-04 00:00 UTC
Put a CDN in front of your Zuplo gateway and drive its cache from response headers, with separate edge and client TTLs, per-entity purge tags, and stale responses through
Build a custom caching policy
2026-08-04 00:00 UTC
Write your own inbound and outbound policy pair with the Cache API when no built-in policy fits your caching rules, from tenant-scoped keys and size and status filters to

Harvest it all

Page through the archive by date. from and to accept YYYY-MM-DD or relative values such as now-7d.

bash
curl "https://freenewsapi.ai/v1/search?host=zuplo.com&from=now-7d&size=100"

To poll for new material, keep the timestamp of the newest article you saw and ask only for what came after it:

bash
curl "https://freenewsapi.ai/v1/search?host=zuplo.com&from=now-1h&sort=date_asc"

Article bodies come with full_text=true. No key, no quota tier, no header — see the search endpoint for every parameter.

Metadata quality

How well zuplo.com marks up its own pages — useful if you are deciding whether to parse them yourself.

31%
dates from JSON-LD
31%
articles with a byline
21%
articles with sections
109 KB
average page weight

Crawl lag — the delay between publication and the article reaching this index — is 1398 min at the median, 1980 minutes at the 90th percentile.

Similar publishers

Comparable outlets in the same language. Those without a page here yet link straight to their slice of the API.

FAQ

Does zuplo.com have an official API?

Not a public one. This endpoint is the practical alternative: their articles as structured JSON, with title, lead, publication time, section, byline and a link back to the original.

How do I get their RSS feed?

Most publishers expose one at /rss or /feed, but feeds carry only the last few dozen items and drop them within hours. This index keeps 111 of their articles and lets you filter by date, language and section.

How many articles does zuplo.com publish per day?

2 on a median day, measured across 36 days.

Can I use this commercially?

The API is free and unauthenticated. What you may do with the content is between you and the publisher: we return metadata, a lead paragraph and a link, not a licence.