One authenticated call searches every corpus at once — the document corpus, released models, the benchmark catalogue, the provider roster, and the incident record — and a second turns that same blend into an answer where every claim carries a citation you can open.
44B is an independent reference implementation of New York General Business Law Article 44-B. It is not a government service and carries no official status. The corpus is refreshed nightly, so most of what it holds postdates the training cut-off of the model you are probably asking — which is the point of querying a registry rather than a model.
What it is not: there is no write access — nothing in the API files, submits, or edits anything; no personal data — the corpus is published documents, public filings, and the public incident record, and filings Article 44-B makes confidential are never returned; and no legal advice — it returns records and citations, not conclusions about your obligations.
Live counts, read from the same tables the API serves and refreshed hourly on this page. Every figure is reachable without a key — the website is the free tier.
Three steps, about two minutes, no client library.
01
Sign up at /sign-up. The website itself is free and unmetered; you only need a plan for programmatic access.
02
On /account, create a key on Pro or Power. It is shown once — 44B stores only its hash — and sent as Authorization: Bearer sk44b_….
03
One GET, no body, no SDK. Everything below runs against the live corpus the moment your key exists.
curl -H "Authorization: Bearer sk44b_…" \ "https://44b.nysgpt.com/api/v1/search?q=frontier%20model"
JavaScript and Python versions of every example are on the reference.
{
"query": "frontier model",
"page": 1,
"pageSize": 15,
"total": 73,
"totals": {
"library": 2081,
"models": 0,
"benchmarks": 2,
"incidents": 11
},
"results": [
{
"id": "2607.08700",
"corpus": "library",
"title": "Do You Need a Frontier Model as a Citation Verifier? …",
"href": "/library/2607.08700",
"date": "2026-07-09",
"score": 600
}
]
}totals reports every corpus the query touched, so one call tells you where the evidence actually is. Full field-by-field breakdown in the reference.
Five real questions and the exact call that answers each one. Every search here was run against the live API before this page shipped.
Question
Which incidents on the record involve AI giving medical advice?
Returned · 5 incidents. Top of the list: “Alleged Harmful Health Outcomes Following Reported Use of Purported Chatbot Advice” and “Microsoft Copilot Allegedly Provides Unsafe Medical Advice”.
curl -H "Authorization: Bearer sk44b_…" \ "https://44b.nysgpt.com/api/v1/search?q=medical+advice&corpus=incidents"
Question
What does the literature say about models gaming their own evaluations?
Returned · 342 matching documents in the corpus, 60 returned in the blended set — title and abstract are both searched.
curl -H "Authorization: Bearer sk44b_…" \ "https://44b.nysgpt.com/api/v1/search?q=reward+hacking&corpus=library"
Question
Find a lab’s published safety framework, and the research around it.
Returned · Anthropic’s Responsible Scaling Policy at rank 1, followed by 59 further records — the lab document and the literature citing it, in one call.
curl -H "Authorization: Bearer sk44b_…" \ "https://44b.nysgpt.com/api/v1/search?q=responsible+scaling+policy"
Question
Which open-weight models are on record, and who builds them?
Returned · 32 models, each resolving to a /models page carrying benchmarks, price, throughput, licence, and the providers serving it.
curl -H "Authorization: Bearer sk44b_…" \ "https://44b.nysgpt.com/api/v1/search?q=llama&corpus=models"
Question
Just answer the question, with citations I can check.
Returns · Prose grounded only in records 44B holds. Every claim carries a bracketed citation indexing into sources, and every source has an href that resolves to a real page. Costs one answer against your monthly allowance; identical questions are cached for seven days and cost nothing.
curl -X POST "https://44b.nysgpt.com/api/v1/answer" \
-H "Authorization: Bearer sk44b_…" \
-H "Content-Type: application/json" \
-d '{"question": "What does the incident record show about algorithmic decision systems used in benefits?"}'The same corpus and the same key, reached three different ways.
Two endpoints. GET /api/v1/search returns the same blend the website searches; POST /api/v1/answer turns that blend into a cited answer. JSON in, JSON out, nothing to install.
Read the reference →
Bring your own model. 44B speaks the Model Context Protocol over Streamable HTTP with nine read-only tools over the live database, authenticated with the same key and metered on the same counters.
Connect a model →
The 44B agent, on the site rather than the API. It answers by querying the database in front of you, shows each tool call as it runs, and links the page every claim came from.
Open the agent →
The website is free and unmetered. What a subscription buys is programmatic access.
The whole website, open to everyone.
Programmatic access for researchers and journalists.
Volume access for insurers, analysts, and teams.
Start free. Add the API when your questions outgrow the search box.
This panel sticks with you. Pick anything below and it opens right beside it, so you can dig through 60,000-plus records without ever losing your spot here.
Travel 44B
LibraryPapers, policy, standards, statuteLabsEvery organization building AIModelsIntelligence, price, and speedBenchmarksThe evaluation catalogIncidentsAI failures and harmsSearchOne field across everythingDashboardThe state of AI accountability in NY44B RegistryThe Art. 44-B compliance portal