Feeds And Archive APIPRO

A hairline list of every way to follow a publication, each row naming the feed, what it carries and its address, over a copyable one-line request that stands in for the whole API.

Devtools95: Feeds And Archive API

A hairline list of every way to follow a publication, each row naming the feed, what it carries and its address, over a copyable one-line request that stands in for the whole API.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/devtools95?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/devtools95?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/devtools95.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).

Quick start

The installed file exports devtools95Demo alongside the block: the exact props behind the preview above. Spread it to get a working feeds page in one line.

tsx
import { Devtools95, devtools95Demo } from "@/components/beste/block/devtools95";

export default function FeedsPage() {
  return <Devtools95 {...devtools95Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Devtools95 } from "@/components/beste/block/devtools95";

export default function FeedsPage() {
  return (
    <Devtools95
      eyebrow="Read it your way"
      heading="Four ways in, none of them an app"
      description="Everything published here is available as a feed."
      feeds={[
        {
          name: "RSS",
          description: "Full text of every piece, in publication order.",
          address: "/feed.xml",
          href: "/feed.xml",
        },
      ]}
      snippetLabel="The whole API"
      snippet={'curl "https://beste.co/api/archive?q=estimates&limit=5"'}
      copyLabel="Copy"
      copiedLabel="Copied"
      note="If you build something on this, we would like to see it."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the hairline rule
headingstringSection heading under the rule
descriptionstringSupporting paragraph
feedsFeedRow[][]One linked row per feed
snippetLabelstringLabel above the request
snippetstringThe request itself, shown in a pre
copyLabelstringCopy button label
copiedLabelstringCopy button label after copying
notestringSingle line under the panel
classNamestringExtra classes for the outer section
ts
type FeedRow = {
  name: string;
  description: string;
  address: string;
  href: string;
};

Behavior notes

More DevTools blocks

View all DevTools
PRO

devtools1

API Endpoint Explorer

Interactive REST API endpoint reference with method badges, expandable parameter details, and response types. Grouped by resource.

PRO

devtools4

Error Monitoring Feed

Application error tracking feed with severity indicators, occurrence counts, and source locations. Summary pills show error distribution.

PRO

devtools7

API Response Examples

API documentation cards showing response examples with color-coded status badges. Headers section, JSON body with copy button, success/error variants.

PRO

devtools9

Database Migration Timeline

Timeline-style database migration tracker with applied, pending, and failed status indicators. Shows migration names, descriptions, and timestamps.

PRO

devtools2

Webhook Event Stream

Real-time webhook event log with delivery status indicators, expandable JSON payloads, and response time tracking.

PRO

devtools94

API Endpoints With Sample Call

A developer section that lists common endpoints as hairline rows pairing tone-coded method chips with monospace paths, beside a dark code panel holding a full sample request and its response.

Markdown version