Treasurydirect Scraper
Spider read treasurydirect.gov in 109 ms without a browser and returned 114 lines of clean markdown, including sections like "Processing Times", "Latest News" and "August 2026".
An official website of the United States governmentThis includes a fixed rate of 0.90%For I bonds issued May 1, 2026 to October 31, 2026.More About Treasury Marketable Securities## Processing TimesCurrently, we are experiencing a high volume of requests, which is causing delays in our response times for requests submitted by mail.If you have a TreasuryDirect account in your name, the processing times for specific transactions are as follows:* **Unlocking Your Account or Updating Banking Information:** Requests to unlock your TreasuryDirect account or update your banking details may take two weeks or longer to complete.* **Converting Paper Savings Bonds to Electronic Format:** It may take nine months or longer to process requests to convert paper savings bonds into electronic bonds.**Searching for Lost, Stolen, or Missing Savings Bonds:** Requests to locate lost, stolen, or missing savings bonds require eleven months or longer for processing.**Cashing Paper Savings Bonds:** If you are named on the bonds and send them in with your request, processing may take three months or longer.**Other Paper Savings Bond Transactions (Not in Your Name):** Transactions you are authorized to complete, but that are not in your name, require five months or longer to process.**Other TreasuryDirect Requests (Including Trusts):** Requests related to trusts and other TreasuryDirect matters may take ten months or longer to process.## Special Announcements for TreasuryDirect account holders:2025 1099 tax forms for TreasuryDirect will be available January 31, 2026. See our 1099 information.You can call us from 8 a.m. to 6 p.m. ET, Monday through Friday, at 844-284-2676.The annual purchase limit for Series I savings bonds in TreasuryDirect is $10,000.Check out our new savings bond explainer page## Latest News## 2026### August 2026* The Fiscal Service Announces Activity for Securities in the STRIPS Program for July 2026### July 2026 The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on treasurydirect.gov.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://treasurydirect.gov");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { Spider } from "@spider-cloud/spider-client";
const spider = new Spider({ apiKey: process.env.SPIDER_API_KEY! });
const result = await spider.scrapeUrl("https://www.treasurydirect.gov", {
return_format: "markdown",
});
console.log(result); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What treasurydirect.gov costs to scrape.
The capture above cost $0.000077 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Government scrapers.
U.S. Department of Labor Scraper
A directory listing for the United States Department of Labor, including agency name, address, contact information, and links to social media and important notices.
State.gov Technical Difficulty Scraper
A page from state.gov displaying a technical difficulty message.
FBI Homepage Scraper
Extract site metadata, navigation, articles, and content from the FBI's official website.
Start scraping treasurydirect.gov.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.