Website Launches Feeds — RSS & JSON

Filter by time, category, location, sorting, and pagination. Updated continuously.

Base Endpoints

RSS
https://websitelaunches.com/feeds/sites.rss
JSON
https://websitelaunches.com/feeds/sites.json

Both endpoints accept the same query parameters (below). We send ETag, Last-Modified, and Cache-Control: max-age=300.

HTTPS UTF-8 ETag / Last-Modified Cache-Control 300s

Query Parameters

time l1 l2 l3 country region city sort p

Try it — Build a URL

Open
Tip: leave blank fields empty; they won’t be added to the query string. Page size is fixed at 500 items.

Examples

Newest (today)
https://websitelaunches.com/feeds/sites.rss?time=today
Trending past week (US)
https://websitelaunches.com/feeds/sites.rss?time=past-week&country=US&sort=votes_desc
Specific date + category
https://websitelaunches.com/feeds/sites.rss?time=2025-09-01&l1=Technology%20%26%20Software&l2=AI%20Tools
Adult & Gambling (explicit)
https://websitelaunches.com/feeds/sites.rss?time=past-week&l1=Adult%20%26%20Gambling
City filter (JSON)
https://websitelaunches.com/feeds/sites.json?time=past-month&country=US&region=CA&city=Los%20Angeles
Pagination
https://websitelaunches.com/feeds/sites.rss?time=past-week&p=2

RSS Shape

RSS 2.0, UTF-8, sanitized titles (ASCII-fallback for maximum reader compatibility). Human-readable HTML lives in <description> (CDATA).

<rss version="2.0">
  <channel>
    <title>New Websites — Today</title>
    <link>https://websitelaunches.com</link>
    <description>Newest websites today.</description>
    ...
    <item>
      <title>example.com - Example Site Title</title>
      <link>https://websitelaunches.com/site/example.com</link>
      <guid isPermaLink="false">wl-site-123</guid>
      <pubDate>Tue, 30 Sep 2025 21:12:00 GMT</pubDate>
      <description><![CDATA[ ... HTML summary ... ]]></description>
      <category>Technology & Software</category>
      ...
    </item>
  </channel>
</rss>

JSON Shape

Flat list with key fields mirrored from the site detail and index pages.

{
  "feed": {
    "title": "New Websites — Today",
    "self": "https://websitelaunches.com/feeds/sites.json?time=today",
    "link": "https://websitelaunches.com"
  },
  "items": [
    {
      "id": 123,
      "domain": "example.com",
      "detail_url": "https://websitelaunches.com/site/example.com",
      "external_url": "https://example.com/",
      "site_title": "Example Site Title",
      "site_description": "Short summary...",
      "launched_at": "2025-09-30T21:12:00Z",
      "upvotes": 5,
      "downvotes": 0,
      "comments": 2,
      "l1": "Technology & Software",
      "l2": "AI Tools",
      "l3": null,
      "country": "US",
      "region": "CA",
      "city": "Los Angeles",
      "platform": "WordPress",
      "thumb": "https://websitelaunches.com/website_thumbs/abcd.png",
      "favicon": "https://websitelaunches.com/website_favicons/abcd"
    }
  ],
  "page": 1,
  "page_size": 500,
  "total": 12345
}

Notes & Best Practices

Quick Links

  • RSS — Today
    Newest websites launched today
  • JSON — Today
    Same data, JSON format
  • RSS — Trending (US, this week)
    Most upvoted in the past week