Agentic Data MiningMCP Connection Kit

Connect an agent to the public record.

Everything a technical end user needs to point an MCP client at the Agentic Data Mining server: the endpoint, the auth model, ready-to-paste config for Claude Desktop and any custom MCP client, and a reference for all 19 live dataset tools — what each returns, the filters that matter, coverage, and one real example call and response shape.

19 live tools · generated from the live tool registry

Endpoint

www.agenticdatamining.ai/api/mcp

Transport

HTTP · JSON-RPC 2.0

Auth

Header: X-Api-Key

Billing

Flat subscription · no per-call metering

Setup

Connect your client

Every dataset below is one tool on this single MCP server — connect once and all 19 (plus any that go live later) show up in tools/list. Replace YOUR_API_KEY_HERE with the key from your account dashboard.

Claude Desktop — claude_desktop_config.json
{
  "mcpServers": {
    "agentic-data-mining": {
      "url": "https://www.agenticdatamining.ai/api/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY_HERE"
      }
    }
  }
}
Generic custom connector
{
  "name": "Agentic Data Mining",
  "url": "https://www.agenticdatamining.ai/api/mcp",
  "transport": "http",
  "auth": {
    "type": "header",
    "header": "X-Api-Key",
    "value": "YOUR_API_KEY_HERE"
  }
}
Raw JSON-RPC (curl) — call a tool directly
curl -sS -X POST \
  https://www.agenticdatamining.ai/api/mcp \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: $ADM_API_KEY" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"contracts.awards","arguments":{"recipient_name":"Boeing","limit":5}}}'

MCP methods exposed: tools/list (enumerate all live tools + JSON Schema) and tools/call (invoke one by name with arguments). Unknown parameter names are rejected with an error naming the valid ones, rather than silently ignored — a malformed call fails loudly.


Reference

All 19 live dataset tools

Jump to a tool, or scroll — each card below has its key filters, coverage window, and one real example call with the response shape it returns.

Financial & Government Contracts

SEC Form 3/4/5 insider transactions

sec.filings

Section 16 insider transactions — every open-market buy/sell, option exercise, and grant reported by officers, directors, and 10%+ owners, parsed from SEC's own quarterly bulk extract.

Coverage All EDGAR filers · 2016–present (10-year backfill in progress)

FilterTypeNotes
tickerstringissuer ticker, exact match
cikintegerissuer's SEC Central Index Key — joins to sec.fundamentals.cik
owner_namestringreporting insider, partial match
trans_codestringS sale / P purchase / A grant, exact match
buy_vs_sell_flagstringcomputed: open_market_buy | open_market_sell | option_exercise | grant | gift | …
is_10b5_1booleanRule 10b5-1 pre-arranged trading plan
min_transaction_value_usdnumberlower bound on computed trade value
trans_date_from / trans_date_toISO datetransaction-date window
Example call
{
  "tool": "sec.filings",
  "params": {
    "ticker": "AAPL",
    "buy_vs_sell_flag": "open_market_sell",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "issuer_cik": 320193,
    "ticker": "AAPL",
    "issuer_name": "Apple Inc.",
    "owner_name": "Cook Timothy D",
    "officer_title": "CEO",
    "trans_code": "S",
    "trans_shares": 12500,
    "trans_price": 242.15,
    "transaction_value_usd": 3026875.0,
    "buy_vs_sell_flag": "open_market_sell",
    "is_10b5_1": true,
    "trans_date": "2026-03-31"
  }
]
Financial & Government Contracts

SAM.gov awards

contracts.awards

Federal contract awards, IDVs, and notices from USASpending.gov, with computed set-aside, recompete, and competition-intensity buckets for screening.

Coverage All federal award notices · FY2008–present

FilterTypeNotes
recipient_namestringword/prefix match, e.g. “Boeing” matches “The Boeing Company”
awarding_agencystringword/prefix match
naics_codestringexact match
min_award_amount / max_award_amountnumberobligated-amount band, USD
setaside_familystringsmall_business | 8a | sdvosb | none …
recompete_windowstringexpiring_soon | expiring_later | no_end_date
competition_intensitystringsole_source | low | competed
pop_state_codestringplace-of-performance state, 2-letter
Example call
{
  "tool": "contracts.awards",
  "params": {
    "recipient_name": "Boeing",
    "min_award_amount": 1000000,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "notice_id": "a1b2c3d4",
    "award_id": "FA8750-26-C-0012",
    "agency": "DEPT OF THE AIR FORCE",
    "naics": "541715",
    "awardee": "THE BOEING COMPANY",
    "amount_usd": 12400000,
    "awarded_at": "2026-07-09T15:30:00Z",
    "setaside_family": "none",
    "competition_intensity": "sole_source",
    "pop_state_code": "VA"
  }
]
Financial & Government Contracts

USAspending federal assistance

gov.assistance

The non-contract half of federal outlays — grants, loans, direct payments, insurance, and other financial assistance from USASpending.gov. Joins to contracts.awards and health.nih_grants on recipient UEI to trace one organization across all three.

Coverage USASpending.gov assistance · FY2017–present (FY2001+ available at source)

FilterTypeNotes
recipient_namestringword/prefix match, e.g. “Missouri” matches “PUBLIC SAFETY, MISSOURI DEPARTMENT OF”
recipient_ueistringSAM.gov UEI, exact — join key to contracts.awards & health.nih_grants
cfdastringCFDA/Assistance-Listing program number, exact, e.g. 93.859
assistance_typestringgrant | loan | direct_payment | insurance | other
awarding_agencystringword/prefix match
pop_state_codestringplace-of-performance state, 2-letter
min_amountnumberlower bound on total obligated amount, USD
posted_from / posted_toISO datelast-modified-date window
Example call
{
  "tool": "gov.assistance",
  "params": {
    "cfda": "93.859",
    "assistance_type": "grant",
    "min_amount": 500000,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "award_id_fain": "75FCMC24C0001",
    "recipient_name": "REGENTS OF THE UNIVERSITY OF MICHIGAN",
    "recipient_uei": "GNJ7BBP73WE9",
    "cfda_number": "93.859",
    "cfda_title": "Biomedical Research and Research Training",
    "assistance_category": "grant",
    "total_obligated_amount": 1240000.0,
    "awarding_agency": "Department of Health and Human Services",
    "pop_state_code": "MI",
    "last_modified_date": "2026-07-11"
  }
]
Financial & Government Contracts

DLA DIBBS micro-purchases

dla.dibbs

The sub-$25k defense buys that never reach USASpending — the DLA Internet Bid Board. Two grains via `mode`: open RFQs to bid on now, and award history (last-sold TOTAL award price by NSN + winning CAGE + date). DLA publishes only a total award price, never a per-unit price.

Coverage DLA DIBBS bid board (dibbs.bsm.dla.mil) · open RFQs + award history keyed by NSN

FilterTypeNotes
modestringawards (default) | price_history | rfq
fscstringFederal Supply Class, one 4-digit code or comma-separated list
nsnstringNational Stock Number, exact — the item identity/join key
cagestringawardee CAGE code, exact (awards grain) — the winning vendor
nomenclaturestringitem name, word/prefix match, e.g. “GASKET”
min_price / max_pricenumbertotal-award-price band, USD (awards grain)
min_tcv / max_tcvnumberestimated_tcv proxy band, USD (rfq grain)
posted_from / posted_toISO dateposted-date window
Example call
{
  "tool": "dla.dibbs",
  "params": {
    "mode": "awards",
    "fsc": "5330",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "solicitation_number": "SPE7M525T1234",
    "nsn": "5330-01-234-5678",
    "fsc": "5330",
    "nomenclature": "GASKET, ROUND",
    "part_number": "AN6227-14",
    "cage_code": "1ABC5",
    "quantity": 500,
    "unit_of_issue": "EA",
    "total_contract_price": 4820.0,
    "price_basis": "observed_award_total",
    "award_basic_number": "SPE7M525D0001",
    "delivery_order_number": "SPE7M526F0012",
    "delivery_order_counter": "0",
    "award_date": "2026-07-08"
  }
]
Financial & Government Contracts

USPTO patents/TM

ip.filings

US patent applications and grants — full CPC classes, legal status, chain-of-title assignee, forward citations, and an abstract snippet.

Coverage Patents + trademarks · 2005–present (historical backfill in progress)

FilterTypeNotes
applicantstringas-filed applicant/assignee, partial match
assignee_orgstringcurrent owner of record, word/prefix match; NULL = never assigned
cpc_classstringe.g. G06F16/00, exact match
is_in_forcebooleancurrently in force
min_forward_citationsintegerwell-cited prior art
grant_date_from / grant_date_toISO dategrant-date window
filing_date_from / filing_date_toISO datefiling-date window
Example call
{
  "tool": "ip.filings",
  "params": {
    "assignee_org": "International",
    "cpc_class": "G06N",
    "is_in_force": true,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "patent_number": "11,987,654",
    "application_number": "18/442,071",
    "assignee_org": "International Business Machines Corporation",
    "cpc_class": "G06N 10/20",
    "title": "Error-corrected qubit routing",
    "technology_area": "quantum_computing",
    "is_in_force": true,
    "forward_citation_count": 14,
    "grant_date": "2024-05-14"
  }
]
Financial & Government Contracts

SEC company fundamentals (XBRL)

sec.fundamentals

One wide row per company per fiscal period — ~15 standardized XBRL metrics (revenue, margins, EPS, balance sheet, cash flow) from SEC's companyfacts export.

Coverage All EDGAR XBRL filers · 2009–present · annual + quarterly

FilterTypeNotes
ticker / cik / companystringissuer identity, exact or partial
fiscal_yearintegere.g. 2023
fiscal_periodstringFY or Q1–Q4
min_revenue / max_revenuenumberUSD band
min_net_incomenumberUSD, can be negative
Example call
{
  "tool": "sec.fundamentals",
  "params": {
    "ticker": "AAPL",
    "fiscal_period": "FY",
    "limit": 1
  }
}
Example response (shape)
[
  {
    "cik": 320193,
    "ticker": "AAPL",
    "company_name": "Apple Inc.",
    "fiscal_year": 2023,
    "fiscal_period": "FY",
    "revenue": 383285000000,
    "net_income": 96995000000,
    "eps_diluted": 6.13,
    "assets": 352583000000,
    "equity": 62146000000,
    "period_end": "2023-09-30"
  }
]
Corporate, Legal & Labor

ClinicalTrials/FDA

health.trials

Clinical trial registrations, status changes, and results postings from ClinicalTrials.gov, with sponsor, phase, and enrollment enrichment.

Coverage ClinicalTrials.gov · 2000–present · updated nightly

FilterTypeNotes
lead_sponsor / condition / interventionstringpartial match
overall_statusstringexact, e.g. RECRUITING
phasestringpartial, e.g. PHASE2
is_industry_sponsoredboolean
enrollment_bucketstringsmall | mid | large
has_resultsbooleanresults posted
updated_after / updated_beforeISO datelast-update window
Example call
{
  "tool": "health.trials",
  "params": {
    "intervention": "semaglutide",
    "overall_status": "RECRUITING",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "nct_id": "NCT06104881",
    "lead_sponsor": "Example Biopharma Inc.",
    "phase": "PHASE3",
    "condition": "NASH",
    "overall_status": "RECRUITING",
    "is_industry_sponsored": true,
    "enrollment_bucket": "large",
    "has_results": false,
    "updated_on": "2026-07-05"
  }
]
Corporate, Legal & Labor

FDA warning letters

fda.warning_letters

Full FDA enforcement corpus (pharma, devices, food, telehealth — not peptide-specific), with resolution status, cited regulations, and violation summaries.

Coverage fda.gov warning-letters index · 2020–present · daily

FilterTypeNotes
company / productstringpartial match
categorystringcgmp | data_integrity | unapproved_drug | labeling
is_resolvedbooleanclosed vs. open
cited_regulationstringCFR cite, partial match
issued_after / issued_beforeISO dateposted-date window
Example call
{
  "tool": "fda.warning_letters",
  "params": {
    "category": "data_integrity",
    "is_resolved": false,
    "issued_after": "2025-07-15",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "company_name": "Example Pharma Manufacturing LLC",
    "subject": "CGMP/Data Integrity",
    "issue_date": "2026-05-04",
    "posted_date": "2026-05-12",
    "letter_url": "https://www.fda.gov/inspections-compliance-enforcement-and-criminal-investigations/warning-letters/example-pharma-manufacturing-llc-123456-05042026",
    "category": "data_integrity",
    "is_resolved": false,
    "days_open": 71
  }
]
Corporate, Legal & Labor

NIH research grants

health.nih_grants

NIH RePORTER awarded funding — who funds research on a topic, which orgs get NIH money, and an SBIR/STTR early-stage biotech signal.

Coverage NIH RePORTER · FY2016–present (FY1985+ available) · daily, 07:00 UTC

FilterTypeNotes
org / pi_namestringfunded org / principal investigator, partial match
keywordstringmatched over title, abstract, RePORTER terms
fiscal_yearintegerfederal fiscal year
min_awardnumberUSD lower bound
is_sbir_sttrbooleansmall-business commercialization award
activity_codestringgrant mechanism, e.g. R01, R44, F32
institutestringfunding NIH Institute/Center, e.g. NCI
Example call
{
  "tool": "health.nih_grants",
  "params": {
    "keyword": "gene therapy",
    "is_sbir_sttr": true,
    "fiscal_year": 2023,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "project_num": "2R44NS119134-03A1",
    "org_name": "SAVIOR BRAIN INC.",
    "org_type": "Domestic For-Profits",
    "pi_names": "GORDON AVERY",
    "fiscal_year": 2023,
    "award_amount": 2864855,
    "activity_code": "R44",
    "institute": "NINDS",
    "is_sbir_sttr": true
  }
]
Corporate, Legal & Labor

FDA drug approvals

fda.approvals

Every FDA drug/biologic approval event (openFDA Drugs@FDA) — NDA/ANDA/BLA originals and supplements, with a new-molecular-entity flag.

Coverage openFDA Drugs@FDA · 1939–present · daily

FilterTypeNotes
sponsorstringapplicant company, partial match
drug / brand / genericstringbrand-or-generic, brand-only, or generic-only, partial match
is_novelbooleannew molecular entity / novel biologic
submission_typestringORIG or SUPPL
approval_after / approval_beforeISO dateapproval-date window
Example call
{
  "tool": "fda.approvals",
  "params": {
    "is_novel": true,
    "approval_after": "2024-01-01",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "application_number": "NDA218000",
    "sponsor_name": "EXAMPLE PHARMA",
    "brand_name": "NOVELIQ",
    "generic_name": "EXAMPLICIB",
    "submission_type": "ORIG",
    "is_novel": true,
    "approval_date": "2024-06-10"
  }
]
Corporate, Legal & Labor

Peptide retail pricing

commerce.peptides

Normalized cross-vendor B2C peptide price index — compound-canonicalized, FX-normalized to price-per-mg, cross-referenced against FDA warning letters by vendor domain.

Coverage ~230 active storefronts (311 tracked) · nightly snapshots

FilterTypeNotes
compoundstringpartial match on canonical slug or raw title, e.g. “BPC-157”
vendor_domainstringexact match
matched_onlybooleandefault true — restrict to taxonomy-recognized rows
is_topicalbooleandefault excludes confirmed-topical from ranking
max_price_per_mg_usd / max_price_usdnumberprice ceiling
date_from / date_toISO dateswitches to the price-history time series
Example call
{
  "tool": "commerce.peptides",
  "params": {
    "compound": "BPC-157",
    "max_price_per_mg_usd": 3,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "compound_name": "BPC-157 5mg",
    "compound_slug": "bpc-157",
    "vendor_domain": "aminovault.com",
    "vendor_name": "Aminovault",
    "price_usd": 96.0,
    "package_size": "5mg x 10 vials",
    "price_per_mg_usd": 1.92,
    "tier": 1,
    "tier_label": "Tier 1 - public-record vendor",
    "fda_warning_letter": false,
    "scrape_date": "2026-07-13"
  }
]
Trade & Logistics

FMCSA Motor Carrier Census

trade.carriers

Every entity registered with FMCSA — identity, operating authority, fleet size, hazmat authority, and safety rating, with implausible self-reported outliers filtered from the default ranking.

Coverage ~4.47M USDOT numbers verified · monthly snapshot

FilterTypeNotes
dot_numberintegerexact match
namestringlegal or DBA name, partial match
statestringphysical-location state, 2-letter
safety_ratingstringS | C | U
hazmatbooleanhazmat authority
min_power_unitsintegerminimum fleet size
Example call
{
  "tool": "trade.carriers",
  "params": {
    "state": "TN",
    "min_power_units": 1000,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "dot_number": 86876,
    "legal_name": "FEDERAL EXPRESS CORPORATION",
    "dba_name": "FEDEX EXPRESS",
    "status_code": "A",
    "phy_state": "TN",
    "power_units": 138481,
    "hm_flag": "Y",
    "safety_rating": "S",
    "registration_date": "1974-06-01"
  }
]
Corporate, Legal & Labor

SAM.gov Contract Opportunities

gov.opportunities

Open and archived federal contract opportunities over $25,000 — pre-award grain (solicitations, sources-sought, award notices), joinable to contracts.awards by solicitation/award number.

Coverage Frozen snapshot verified 2026-07-17 · 38,450 notices (full historical backfill pending)

FilterTypeNotes
naics_codestringup to 6 digits, exact match
agencystringdepartment/sub-tier/office path, partial match
notice_typestringSolicitation | Sources Sought | Award Notice …
set_asidestringsmall_biz | 8a | wosb | sdvosb | hubzone | full_open
statestringplace-of-performance, 2-letter
keywordstringmatches title or description
posted_from / posted_toISO dateposted-date window
Example call
{
  "tool": "gov.opportunities",
  "params": {
    "naics_code": "541512",
    "set_aside": "sdvosb",
    "active": true,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "notice_id": "a1b2c3d4e5f60718293a4b5c6d7e8f90",
    "title": "Aircraft Ground Support Equipment Maintenance",
    "solicitation_number": "FA812624R0031",
    "notice_type": "Solicitation",
    "naics_code": "488190",
    "set_aside_code": "SDVOSBC",
    "response_deadline": "2026-08-15",
    "pop_state": "TX"
  }
]
Financial & Government Contracts

DLA FLIS / PUB LOG item catalog

dla.flis

DLA FLIS / PUB LOG public catalog item intelligence, keyed by NIIN — item identity for a National Stock Number (the item-grain surface only; the separate technical-characteristics vertical is not yet populated), joinable to dla.dibbs award/price history on NIIN.

Coverage DLA FLIS / PUB LOG public catalog · ~3.9M releasable NIINs · monthly, export-controlled items excluded

FilterTypeNotes
niinstringbare 9-digit, exact — join key to dla.dibbs
nsnstringNational Stock Number (FSC + NIIN), exact match
fscstringsingle 4-digit class or comma-separated list, matches ANY
fsgstringFederal Supply Group, prefix match against fsc
nomenclaturestringitem name, full-text word/prefix match, e.g. “GASKET”
Example call
{
  "tool": "dla.flis",
  "params": {
    "fsc": "5330",
    "nomenclature": "GASKET",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "niin": "012345678",
    "nsn": "5330012345678",
    "fsc": "5330",
    "niin_dashed": "01-234-5678",
    "item_name": "GASKET, ROUND",
    "unit_of_issue": "EA",
    "catalog_unit_price": 4.37,
    "price_basis": "catalog_reference",
    "snapshot_vintage": "2026-07-01"
  }
]
Energy & Natural Resources

USGS National Water Use

env.water_use

The canonical US water-withdrawal dataset from the US Geological Survey — a historical/analytical reference compiled on a 5-year cadence (latest complete compilation is 2015; not a nightly feed). One row per area (county or state) × water-use category × compilation year.

Coverage USGS · county + state · 2015 compilation (latest complete; county 1985+, state 1950+ available)

FilterTypeNotes
statestring2-letter state (e.g. CA, AZ)
countystringcounty name, partial match
fipsstringexact FIPS — 5-digit county or 2-digit state
categorystringPS/DO/IN/IR/LI/AQ/MI/PT code or a name (e.g. irrigation)
yearintegercompilation year, e.g. 2015 (latest complete)
area_typestringcounty | state (state rows are county sums per category)
min_withdrawal_mgdnumberlower bound on total withdrawal, Mgal/d
Example call
{
  "tool": "env.water_use",
  "params": {
    "state": "AZ",
    "county": "Maricopa",
    "category": "irrigation",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "area_type": "county",
    "state": "AZ",
    "county": "Maricopa County",
    "fips": "04013",
    "year": 2015,
    "category_code": "IR",
    "withdrawal_total_mgd": 1232.8,
    "gw_fresh_mgd": 953.85,
    "sw_fresh_mgd": 278.95
  }
]
Corporate, Legal & Labor

NPPES healthcare providers

health.providers

CMS NPI Registry — identity, practice location, taxonomy/specialty, and OIG-exclusion status. Requires an npi, name+state, or taxonomy+state anchor (not a bulk person-lookup tool).

Coverage Frozen snapshot verified 2026-07-17 · ~9.67M providers

FilterTypeNotes
npistring10-digit National Provider Identifier, exact match
namestringprovider/org name — requires state (or npi)
taxonomystringspecialty code — requires state (or npi)
statestringpractice-location state, 2-letter
entity_typestringindividual or organization
is_excludedbooleanOIG LEIE exclusion list; +state allowed alone as a compliance sweep
Example call
{
  "tool": "health.providers",
  "params": {
    "name": "Hunter",
    "state": "KS",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "npi": "1710670039",
    "provider_name": "HUNTER, HEATHER",
    "entity_type": "individual",
    "primary_taxonomy_code": "101YP2500X",
    "practice_state": "KS",
    "is_excluded": false,
    "last_update_date": "2026-07-06"
  }
]
Financial & Government Contracts

DLA prior-award unit prices

dla.prior_prices

What DLA paid PER UNIT for an NSN before — prior unit price, award date, winning CAGE, quantity and contract number. SECONDHAND BY CONSTRUCTION: every row is price_basis="published_prior_unit", a prior award's unit price as republished by the government inside the Procurement History block printed on a LATER solicitation. Never blend it with dla.dibbs' observed award totals. DLA prints no currency marker, so read currency_basis before rendering any "$".

Coverage 16,458 prior-award rows · 1,556 distinct NSNs · prior awards dated 1980–2026 · thin and expanding by design; read grain.fsc_classes_on_file on each response, never a class list quoted elsewhere

FilterTypeNotes
nsnstringNational Stock Number, exact — dashed or bare 13-digit both work
prior_cagestringprior awardee CAGE (5-char), exact, case-insensitive
prior_contract_numberstringprior contract number (PIID), dashed or undashed
solicitation_numberstringthe RFQ that published this prior price, dashed or undashed
award_date_from / award_date_toISO datewindow on the PRIOR award's own date
min_unit_price / max_unit_pricenumberbounds on unit_price
require_currencybooleantrue = only rows with a non-NULL currency
currency_basisstringdocument_rendered | assumed_usd_owner_decision | unknown_no_marker_rendered
Example call
{
  "tool": "dla.prior_prices",
  "params": {
    "nsn": "8030-01-369-4416",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "nsn": "8030-01-369-4416",
    "prior_cage_code": "6K233",
    "prior_awardee_name": "CESCO, INC. DBA CESCO INC",
    "prior_awardee_name_status": "resolved_from_flis_cage_map",
    "prior_contract_number": "SPE8ES26P1046",
    "quantity": 1,
    "unit_price": 277.0,
    "currency": "USD",
    "currency_basis": "assumed_usd_owner_decision",
    "award_date": "2026-07-24",
    "price_basis": "published_prior_unit",
    "solicitation_number": "SPE8ES26T2472"
  }
]
Financial & Government Contracts

Exclusions & debarment

risk.exclusions

Screen parties against federal exclusion/debarment lists — SAM.gov Exclusions (government-wide) and HHS-OIG LEIE (Medicare/Medicaid), unified in one table. SCREEN BY NAME, CORROBORATE BY IDENTIFIER: cage_code is populated on 0.17% of records and uei on 19%, so a zero-row identifier screen means the corpus lacks that key, not that the party is clean — every empty response carries an identifier_coverage block and a safe_to_treat_as_clean verdict.

Coverage SAM.gov Exclusions + HHS-OIG LEIE · 251,657 records · SAM daily reconcile, LEIE monthly full file

FilterTypeNotes
namestringentity name or individual last name, case-insensitive infix match
npistringexact — join key to health.providers
ueistringexact — join key to contracts.awards / gov.assistance / health.nih_grants
cage_codestringexact — join key to dla.dibbs; confirms a hit, never clears a party
sourcestringsam | leie
classificationstringindividual | entity | vessel
exclusion_programstringpartial match, e.g. Procurement, Nonprocurement, Reciprocal
excluding_agencystringpartial match, e.g. "JUSTICE", "HHS"
statestringparty address state code
currently_excludedbooleantrue = still barred; false = reinstated
exclusion_date_from / exclusion_date_toISO dateexclusion-date window
Example call
{
  "tool": "risk.exclusions",
  "params": {
    "name": "Hunter",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "source_system": "leie",
    "classification": "individual",
    "entity_name": "DALBY, RICHARD HUNTER",
    "last_name": "DALBY",
    "uei": null,
    "cage_code": null,
    "npi": null,
    "exclusion_type": "1128b4",
    "exclusion_program": "Nonprocurement",
    "excluding_agency": "HHS Office of Inspector General",
    "exclusion_date": "2026-07-20",
    "reinstatement_date": null,
    "state": "LA",
    "is_currently_excluded": true
  }
]
Financial & Government Contracts

Known suppliers by NSN (SAM.gov entity registration)

dla.nsn_suppliers

Which companies have PREVIOUSLY BEEN AWARDED a given NSN or FSC, per DLA's own captured DIBBS award grid, each joined by CAGE to its SAM.gov entity registration — legal name, UEI, registration currency, self-reported NAICS, entity structure, location, and the SBA size standard for the primary NAICS. Answers who has supplied this before, never who could: no NAICS-to-FSC crosswalk exists, so the NAICS codes are not capability evidence. No prices and no debarment screening are returned — run risk.exclusions separately.

Coverage DIBBS award grid × SAM.gov Entity Registration Public V2 · 853,880 registrants stored from the 2026-08-02 monthly snapshot · 1,400 of 1,490 award CAGEs resolve (94.0%, measured 2026-08-06 over the full population)

FilterTypeNotes
nsnstringNational Stock Number, dashed or bare 13-digit; required if fsc is not given
fscstring4-digit Federal Supply Class; required if nsn is not given (FSCs 10–14 are withheld)
cagestring5-character CAGE — narrows to one supplier
registration_statusstringactive | expired | any (default) — as of each row's snapshot vintage, not today
award_date_from / award_date_toISO dateaward-date window; narrows the whole aggregate
Example call
{
  "tool": "dla.nsn_suppliers",
  "params": {
    "nsn": "9130-01-305-4097",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "cage_code": "1G5K1",
    "company_name": "AVFUEL CORP",
    "uei": "EVM5L8672MN5",
    "awards_on_file": 51,
    "first_award_date": "2022-07-15",
    "last_award_date": "2026-02-11",
    "registration_status": "registration_on_file",
    "registration_currency": "active_as_of_snapshot",
    "sam_snapshot_vintage": "2026-08-02",
    "primary_naics": "424720",
    "state_or_province": "MI",
    "entity_structure": "2L",
    "size_standard": {
      "basis": "base_standard",
      "naics_code": "424720"
    }
  }
]