Discover/Dailycal API
live

Dailycal APIdailycal.org

Browse and retrieve Daily Californian articles site-wide or by section. List articles newest-first and fetch full plain-text body content by article ID.

This API takes change requests — .
Endpoint health
verified 3h ago
list_articles
get_article_text
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the Dailycal API?

The Daily Californian API exposes 2 endpoints that cover published articles from dailycal.org, UC Berkeley's independent student newspaper. Use list_articles to page through articles newest-first across the entire site or filtered to a specific section like opinion/editorials, and use get_article_text to retrieve the full body text, headline, byline, paragraph array, word count, and publish timestamp for any individual article by its UUID.

This call costs1 credit / call— charged only on success
Try it
Number of articles to return per page; values above 100 are clamped to 100.
Zero-based position in the newest-first result space to start from; pass the previous response's next_offset to continue.
Section slug path exactly as it appears in article URLs (lowercase, slash-separated), e.g. opinion/editorials or news. Omitted = all articles site-wide.
api.parse.bot/scraper/be1089d4-6f4f-4709-8684-cd734697f840/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/be1089d4-6f4f-4709-8684-cd734697f840/list_articles?section=opinion%2Feditorials' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace dailycal-org-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Daily Californian articles — browse editorials, read full text."""
from parse_apis.dailycal_org_api import DailyCal, ArticleNotFound

client = DailyCal()

# List recent editorials, capped at 5 total items.
for article_summary in client.article_summaries.list(section="opinion/editorials", limit=5):
    print(article_summary.title, article_summary.published_at)

# Drill into the first result's full text via summary -> detail navigation.
lead = client.article_summaries.list(section="opinion/editorials", limit=1).first()
if lead is not None:
    full = lead.details()
    print(full.title, full.word_count, "words")
    for paragraph in full.paragraphs[:3]:
        print(paragraph[:120])

# Point-lookup by id discovered from a previous listing.
if lead is not None:
    try:
        article = client.articles.get(article_id=lead.article_id)
        print(article.title, "|", article.author)
    except ArticleNotFound:
        print("article removed since listing")

print("exercised: article_summaries.list / details / articles.get")
All endpoints · 2 totalmissing one? ·

Lists published articles sorted by publish time, newest first. One round trip per call. Without a section it covers the whole site; with a section slug path (as it appears in article URLs, e.g. opinion/editorials) it covers only that section and its descendants. Paginates by offset: `offset` (default 0) and `limit` (default 25, clamped to 100); the response carries the source's `total`, `has_more`, and `next_offset` (null when the result space is exhausted). An unknown section returns an empty `articles` array with total 0. Each item's `article_id` feeds get_article_text.

Input
ParamTypeDescription
limitintegerNumber of articles to return per page; values above 100 are clamped to 100.
offsetintegerZero-based position in the newest-first result space to start from; pass the previous response's next_offset to continue.
sectionstringSection slug path exactly as it appears in article URLs (lowercase, slash-separated), e.g. opinion/editorials or news. Omitted = all articles site-wide.
Response
{
  "type": "object",
  "fields": {
    "limit": "integer page size that was applied after clamping",
    "total": "integer total number of matching articles reported by the site",
    "offset": "integer offset that was applied",
    "section": "section filter that was applied, or null for site-wide",
    "articles": "array of article summaries, newest first: article_id (UUID for get_article_text), title, subheadline, url, published_at (ISO 8601 with offset), updated_at, sections (slug paths), keywords, authors (byline strings), summary (plain-text lede), thumbnail_url",
    "has_more": "boolean, true when further pages exist",
    "next_offset": "integer offset for the next page, or null when no more results"
  },
  "sample": {
    "data": {
      "limit": 5,
      "total": 71,
      "offset": 0,
      "section": "opinion/editorials",
      "articles": [
        {
          "url": "https://www.dailycal.org/opinion/editorials/in-the-age-of-ai-generated-public-messages-human-imperfection-is-worth-defending/article_1021b4f2-7ecf-4d6c-9aa8-a7195048e7b6.html",
          "title": "In the age of AI-generated public messages, human imperfection is worth defending",
          "authors": [
            "Editorial Board"
          ],
          "summary": "As tools designed to choose the statistically most appropriate language in a given setting, the frequent and unchecked use of LLMs serves to flatten language across fields.",
          "keywords": [
            "pangram",
            "uc berkeley",
            "ai"
          ],
          "sections": [
            "opinion/editorials"
          ],
          "article_id": "1021b4f2-7ecf-4d6c-9aa8-a7195048e7b6",
          "updated_at": null,
          "subheadline": null,
          "published_at": "2026-09-03T07:00:00-07:00",
          "thumbnail_url": "https://bloximages.chicago2.vip.townnews.com/dailycal.org/content/tncms/assets/v3/editorial/c/fd/cfd5f0db-9b6a-4bcd-a2bd-80cc85d58648/6a99a3e67305a.image.jpg?resize=640%2C412"
        }
      ],
      "has_more": true,
      "next_offset": 5
    },
    "status": "success"
  }
}

About the Dailycal API

Listing Articles

The list_articles endpoint returns a newest-first array of article summaries from dailycal.org. Each object in the articles array includes an article_id (UUID), title, subheadline, url, and published_at in ISO 8601 format. Without a section parameter the query covers the entire site; passing a section slug such as opinion/editorials or news restricts results to that section and its descendants, matching the path structure as it appears in article URLs. Page size is controlled with limit (capped at 100) and offset for cursor-style pagination. The response includes total, has_more, and next_offset so you can walk through the full result set.

Fetching Article Text

The get_article_text endpoint takes a single required parameter, article_id, which must be a UUID exactly as returned by list_articles. It returns the full article body as both a paragraphs array (one element per body paragraph, plain text, in reading order) and a single text string with paragraphs joined by blank lines. Supporting fields include title, author (byline as published, which may carry a role suffix like | Staff), published_at, canonical URL, and an integer word_count.

Coverage and Scope

Content spans all sections published on dailycal.org, including news, opinion, editorials, sports, arts, and more. Section filtering uses the slug path exactly as it appears in URLs — for example, opinion/editorials — so multi-level section hierarchies are supported. The total field in list responses reflects the site's reported count of matching articles, not a local cache, so it tracks publication activity accurately.

Reliability & maintenanceVerified

The Dailycal API is a managed, monitored endpoint for dailycal.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dailycal.org changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official dailycal.org API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor the opinion/editorials section for new UC Berkeley editorial positions using list_articles with the section filter
  • Build a campus news digest by paginating list_articles site-wide and storing title, subheadline, and url fields
  • Extract full article text via get_article_text for NLP analysis or sentiment classification of student journalism
  • Track byline frequency using the author field returned by get_article_text to identify prolific student contributors
  • Compute reading time estimates by using the word_count field from get_article_text across a batch of articles
  • Detect publication volume trends over time by collecting published_at timestamps from list_articles across sections
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the Daily Californian have an official developer API?+
No. dailycal.org does not publish an official developer API or documented data access layer for its article content.
How does section filtering work in `list_articles`?+
Pass the section parameter as the slug path exactly as it appears in article URLs — lowercase and slash-separated, for example opinion/editorials or sports. The filter covers the specified section and its descendants. Without a section parameter, the endpoint returns articles from across the entire site, newest first.
What does pagination look like for `list_articles`?+
Each response includes has_more (boolean), next_offset (integer or null), total (total matching articles), offset (applied offset), and limit (applied page size). Pass next_offset from one response as offset in the next call to walk through results. The maximum page size is 100; values above that are clamped automatically.
Does the API return article comments, tags, or author profile data?+
Not currently. The API covers article summaries (title, subheadline, url, published_at) from list_articles and body text, byline, and word count from get_article_text. Comments, topic tags, and author profile pages are not included in either endpoint's response. You can fork this API on Parse and revise it to add an endpoint covering those fields.
Is there a way to search articles by keyword rather than browsing by section?+
Not currently. The API supports filtering by section and paginating newest-first but does not offer free-text keyword search. You can fork this API on Parse and revise it to add a search endpoint.
Page content last updated . Spec covers 2 endpoints from dailycal.org.
Related APIs in News MediaSee all →
nytimes.com API
Retrieve the latest news articles from The New York Times organized by topic sections like politics, business, technology, and more. Stay informed with current stories from one of the world's leading news sources without manually browsing their website.
apnews.com API
Search for news articles from Associated Press on any topic and retrieve complete article details including headlines, summaries, and content with easy pagination. Stay informed with current news stories by finding and reading articles on subjects that matter to you.
reuters.com API
Access data from reuters.com.
ai-bot.cn API
Search and retrieve the latest artificial intelligence news articles by date and keyword to stay updated on industry developments and trends. Access daily curated content from ai-bot.cn to find relevant stories that match your specific interests.
mdpi.com API
Access MDPI's open-access academic content programmatically. Search across thousands of peer-reviewed articles, retrieve full structured text, extract key findings, and browse journal metadata including impact factors and CiteScores.
arts.ca.gov API
Discover California arts funding opportunities by browsing grant programs, searching awarded grantees, and accessing resources from the California Arts Council. Find relevant grants and grantee information while staying updated with the latest news and resources in California's arts funding landscape.
hsprepsports.com API
Access high school sports news, rankings, recruiting updates, and player spotlights from HS PrepSports by searching articles, browsing collections, or reading individual pieces. Stay informed on the latest high school athletic developments with curated content all in one place.
discord.com API
Search Discord Help Center articles and retrieve full-text content in multiple formats to find answers about Discord features, troubleshooting, and account management. Browse available help categories and access complete article details including both plain text and HTML versions.