API · /oyez-api

Oyez Supreme Court API

healthy 4,725 Subscribers

The US Supreme Court as an API, powered by Oyez — clean JSON, no key. Browse cases by term and open any case for its full detail: the parties, the facts, the legal question, the conclusion, a dated timeline, the lower court, and the decision with each justice's individual vote and opinion. Pull the oral-argument transcript for a case — every speaker turn with start/stop timestamps and a link to the audio — ideal for analysis, search and captioning. List all the justices and open a justice's profile (dates, places, seats held). Live data straight from oyez.org, the definitive multimedia archive of the Supreme Court. Distinct, authoritative civic data — ideal for legal-tech, research, education, news and civic apps. 5 data endpoints. Authenticated with an x-oanor-key; fair-use rate limits per plan.

api.oanor.com/oyez-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/oyez-api/openapi.json
/api/oyez-api/llms.txt

Discovery: GET /api/index.json lists every API.

Oyez Supreme Court API — live data on the oanor API marketplace

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
472 ms
Server probes · 24h
Subscribers
4,725
active
Total calls
114
last 7 days
status Full status page → · 12 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 3,000 calls / month
  • 5 requests / second
  • Hard cap (429 above quota, no overage)
  • 3,000 calls/month
  • 5 req/sec
  • All 5 data endpoints
  • Oral-argument transcripts
  • No credit card
Sign in to subscribe

Starter

€7.90 /month

  • 48,000 calls / month
  • 15 requests / second
  • Hard cap (429 above quota, no overage)
  • 48,000 calls/month
  • 15 req/sec
  • Cases, decisions & justices
  • Email support
Sign in to subscribe

Pro

€32.00 /month

  • 290,000 calls / month
  • 30 requests / second
  • Hard cap (429 above quota, no overage)
  • 290,000 calls/month
  • 30 req/sec
  • Legal-tech & research pipelines
  • Priority support
Sign in to subscribe

Mega

€95.00 /month

  • 1,250,000 calls / month
  • 80 requests / second
  • Hard cap (429 above quota, no overage)
  • 1,250,000 calls/month
  • 80 req/sec
  • Newsroom & platform scale
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Software Licenses API — oanor API marketplace

Software Licenses API

The full SPDX License List as an API — all 729 software licenses with metadata and the complete license text for each. Look up any license by its SPDX id (e.g. MIT, Apache-2.0, GPL-3.0-only, MPL-2.0) and get the exact, canonical license text plus its name, reference URL, see-also links and standard header. Search or list licenses by name/id and filter by OSI-approved (Open Source Initiative), FSF-libre (Free Software Foundation) or deprecated status. Ideal for SBOM / license-compliance tooling, package managers, repository scanners, legal review, and open-source governance dashboards.

api.oanor.com/licenses-api

US Federal Register API — oanor API marketplace

US Federal Register API

The US Federal Register as an API — the official daily journal of the United States government, live from federalregister.gov. Search the full record of federal rules, proposed rules, public notices and presidential documents (including executive orders) by keyword, document type, issuing agency and publication-date range; fetch any document by its number with title, abstract, agencies, publication and signing dates, executive-order number and links to the official HTML and PDF; and list the 470+ federal agencies. Ideal for legal-tech, compliance, regulatory-monitoring, government-transparency, policy-research and news applications. Public-domain US government data.

api.oanor.com/fedregister-api

Sweden Municipal Statistics API — oanor API marketplace

Sweden Municipal Statistics API

Swedish municipal and regional statistics straight from Kolada — the open database run by the Council for the Promotion of Municipal Analyses (RKA) — no key, read live. Kolada holds roughly 6,000 key performance indicators tracking the finances and service quality of all 290 Swedish municipalities and 21 regions: personnel costs, school results, elderly care, waiting times, environment, demographics and much more. The kpis endpoint lists and searches the indicator catalogue by title. The kpi endpoint returns the full metadata of a single indicator (its definition, operating area and source). The municipalities endpoint lists every municipality and region with its official code. The data endpoint returns a chosen indicator's full annual value series for a given municipality, with the latest value highlighted. The meta endpoint documents the API. Live data from Kolada v3, lightly cached. Live. 5 endpoints. This serves Swedish public-sector statistics; for the krona exchange rate or national CPI use an FX / national-statistics API.

api.oanor.com/kolada-api

US Federal Fiscal API — oanor API marketplace

US Federal Fiscal API

Live US federal fiscal data from the US Treasury's official FiscalData API — the cost-and-flow side of US public finance. Get the federal budget deficit or surplus by month for the current fiscal year (receipts, outlays and the net) from the Monthly Treasury Statement; the interest the United States pays to service its national debt, by month and fiscal-year-to-date, broken down by security type; and the average interest rate the Treasury pays on each class of its debt (Bills, Notes, Bonds, TIPS) plus the weighted overall rate. Live, no key, nothing cached. Distinct from debt-level (debt-to-the-penny) and auction feeds — this is the deficit, the interest bill and the average rate on the debt.

api.oanor.com/usfiscal-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Oyez Supreme Court API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Oyez Supreme Court API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Oyez Supreme Court API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Oyez Supreme Court API cost?
Oyez Supreme Court API has a free tier with 100 calls / month. Paid plans start at €7.90 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Oyez Supreme Court API GDPR-compliant?
All requests to Oyez Supreme Court API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/oyez-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/oyez-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/oyez-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/oyez-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.