Discover/DIU API
live

DIU APIdiu.mil

Access the Defense Innovation Unit's catalog of commercial tech solutions prototyped for the DoD. Search by keyword, vendor, portfolio, or technology area.

Endpoint health
verified 19h ago
get_catalog
search_catalog
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the DIU API?

The DIU Catalog API provides two endpoints to browse and search the Defense Innovation Unit's Commercial Solutions Catalog, exposing 7 structured fields per entry including project_name, vendor_name, portfolio, year_referenced, key_terms, dod_partners, and uuid. Use get_catalog to retrieve the full listing with optional keyword filtering and pagination, or use search_catalog for targeted keyword queries across project names, vendors, portfolios, and technology areas.

Try it
Maximum number of results to return.
Search keyword to filter catalog entries across project names, vendor names, portfolios, and key terms.
Starting offset for pagination.
api.parse.bot/scraper/9ee61bc0-f2c4-4ddf-9719-0116b246dd6f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9ee61bc0-f2c4-4ddf-9719-0116b246dd6f/get_catalog?limit=10&query=cyber&offset=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace diu-mil-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.diu_commercial_solutions_catalog_api import DIU, Solution

diu = DIU()

# List all catalog entries with a keyword filter
for solution in diu.solutions.list(query="cyber"):
    print(solution.project_name, solution.vendor_name, solution.portfolio, solution.year_referenced)

# Search the catalog for AI-related solutions
for result in diu.solutions.search(query="drone"):
    print(result.uuid, result.project_name, result.key_terms)
All endpoints · 2 totalmissing one? ·

Retrieve DIU commercial solutions catalog entries with optional keyword filtering. Paginates automatically through results. Each entry represents a prototyped commercial technology solution available to DoD. Without a query, returns all entries; with a query, filters across project names, vendor names, portfolios, and key terms. Results are ordered by year referenced (newest first).

Input
ParamTypeDescription
limitintegerMaximum number of results to return.
querystringSearch keyword to filter catalog entries across project names, vendor names, portfolios, and key terms.
offsetintegerStarting offset for pagination.
Response
{
  "type": "object",
  "fields": {
    "query": "string or null - the search query used",
    "catalog": "array of catalog entry objects with uuid, project_name, vendor_name, portfolio, year_referenced, key_terms, dod_partners",
    "total_records": "integer total matching records in catalog",
    "returned_count": "integer number of records returned in this response"
  },
  "sample": {
    "data": {
      "query": null,
      "catalog": [
        {
          "uuid": "a0Tt0000009RzzNEAS-a0h830000004pzUAAQ",
          "key_terms": "Fuel Optimization, Route Planning, Mobility Airlift, Artificial Intelligence (AI)",
          "portfolio": "10x",
          "vendor_name": "C3.ai, Inc.",
          "dod_partners": null,
          "project_name": "AI for Flight Optimization",
          "year_referenced": "2023"
        },
        {
          "uuid": "a0Tt000000B0oUnEAJ-a0h830000004q5cAAA",
          "key_terms": "NCR, IADS, Automated Target Recognition",
          "portfolio": "AI/ML Portfolio",
          "vendor_name": "Teleidoscope",
          "dod_partners": null,
          "project_name": "Long Range Detection",
          "year_referenced": "2023"
        }
      ],
      "total_records": 134,
      "returned_count": 2
    },
    "status": "success"
  }
}

About the DIU API

Endpoints and Response Shape

The get_catalog endpoint retrieves all entries in the DIU Commercial Solutions Catalog and supports optional query, limit, and offset parameters. It automatically paginates through results up to the specified limit. Each response includes total_records (total matching entries in the catalog), returned_count (how many records came back in this call), and a catalog array of entry objects. Each catalog entry carries a uuid, project_name, vendor_name, portfolio, year_referenced, key_terms, and dod_partners.

Search Behavior

The search_catalog endpoint requires a query string and returns matching entries across project names, vendor names, portfolios, and key terms simultaneously. This makes it useful for finding all entries related to a technology area — for example, passing query: 'AI' returns entries where AI appears in any of those fields. Both endpoints return the same catalog entry shape, so response handling is consistent between them.

Data Coverage

Entries represent commercial technology solutions that have gone through DIU's prototyping process. The dod_partners field identifies which DoD components sponsored or participated in a given project. The portfolio field groups entries by technology domain (for example, space, cyber, human systems), and year_referenced indicates when the solution was cataloged. The key_terms field surfaces technology tags associated with each entry, which is particularly useful for filtering by capability type without knowing exact project or vendor names.

Reliability & maintenanceVerified

The DIU API is a managed, monitored endpoint for diu.mil — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when diu.mil changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official diu.mil API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
19h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a searchable directory of DoD-vetted commercial vendors using vendor_name and portfolio fields
  • Identify which DoD components (dod_partners) have adopted specific commercial technology categories
  • Track year-over-year trends in DIU prototyping by filtering on year_referenced
  • Map technology coverage gaps in the catalog by aggregating key_terms across all entries
  • Find all catalog entries for a specific technology area (e.g., 'drone', 'cyber') using search_catalog
  • Cross-reference DIU solutions with internal procurement records using the uuid field
  • Filter catalog entries by portfolio to scope research to a specific DoD technology domain
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does DIU provide an official public developer API for the Commercial Solutions Catalog?+
DIU does not publish a documented public REST API for programmatic access to the Commercial Solutions Catalog. The catalog is available as a browsable listing on diu.mil, but no official API with authentication, versioning, or developer documentation is offered.
What does the get_catalog endpoint return for each entry?+
Each entry in the catalog array includes uuid, project_name, vendor_name, portfolio, year_referenced, key_terms, and dod_partners. The response also includes total_records (the count of all matching entries in the catalog) and returned_count (entries included in this specific response), which you can use alongside the offset parameter to paginate through large result sets.
Can I filter catalog entries by portfolio, year, or DoD partner directly?+
The current endpoints support keyword-based filtering via the query parameter in both get_catalog and search_catalog. Dedicated filters for portfolio, year_referenced, or dod_partners as standalone parameters are not currently available. You can fork this API on Parse and revise it to add discrete filter parameters for those fields.
Does the API return detailed project descriptions or contract values for catalog entries?+
Not currently. Each entry exposes project_name, vendor_name, portfolio, year_referenced, key_terms, dod_partners, and uuid — there are no narrative descriptions, contract dollar amounts, or award dates in the response shape. You can fork this API on Parse and revise it to add any additional fields that appear on individual catalog detail pages.
How fresh is the catalog data, and how often does it update?+
The catalog reflects the listing as published on diu.mil. DIU updates the catalog as new solutions complete the prototyping process, but there is no fixed refresh cadence documented publicly. Entries marked with older year_referenced values represent solutions cataloged in prior years and may not reflect current availability.
Page content last updated . Spec covers 2 endpoints from diu.mil.
Related APIs in Government PublicSee all →
dahuasecurity.com API
Browse Dahua’s product category tree and navigation structure, including major product families and their links and images.
dia.es API
Browse and search products across Día supermarket's catalog, view product details, categories, and current offers available on dia.es. Find specific items, explore product categories and subcategories, and discover active promotions.
digikey.com API
Access data from digikey.com.
biddingo.com API
Search and filter government procurement bids and RFPs across different regions and categories to find relevant opportunities. Access detailed project descriptions and bid information to help you discover and evaluate contracting opportunities that match your business needs.
analog.com API
Browse Analog Devices' complete product catalog, search for specific parts, and instantly access detailed specifications, documentation, pricing, and sample purchasing options. Explore product categories and subcategories to discover components that match your technical requirements and budget.
dba.dk API
Search and retrieve detailed listings from Denmark's largest marketplace DBA.dk, including product information, pricing, and seller details across general goods and car categories. Browse marketplace categories, find specific items, and access comprehensive data on both regular listings and automotive inventory.
allsurplus.com API
Search and browse industrial assets and surplus inventory across B2B auctions, view detailed asset information, and explore upcoming auction events filtered by category and location. Find the specific equipment, machinery, and surplus items you need by browsing comprehensive product details and auction schedules.
shop.boeing.com API
Browse and search Boeing's online parts catalog. Retrieve product details, technical specifications, shipping attributes (hazmat, ITAR, ECCN), categories, brands, and suppliers for parts available on shop.boeing.com.
DIU Commercial Solutions Catalog API · Parse