mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Which companies just received a federal subaward — and which are getting their FIRST one?

Which companies just received a federal subaward — and which are getting their FIRST one? Bulk feed over USAspending subawards (the File F prime→sub cascade), newest-first by action date: sub-recipient, prime, agency, amount (banded), NAICS, and date. new_only isolates first-time subawardees (no prime award on record) — the new-to-govcon growth signal. Flat rows, cursor-paginated up to 1000/page, filterable by state, NAICS, agency, minimum amount, or since. Observational public records as filed.

Do you run api.govparse.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
25000000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-10
updated

Provider

api.govparse.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "25000000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "25000000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "new_only": "true",
          "since": "2026-06-01",
          "state": "TX"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "basis": "USAspending subawards (File F), one row per subaward newest-first by action_date. new_only keeps only first-time subawardees. amount_band is a coarse size bucket. Observational public records as filed.",
          "feed": "subawards",
          "page": {
            "has_more": true,
            "limit": 500,
            "next_cursor": "eyJkIjoiMjAyNi0wNi0wMyIsImsiOiJvc2hhOjMxOTAwMTIzNCJ9",
            "returned": 500
          },
          "query": {
            "agency": "all",
            "min_amount": "any",
            "naics": "all",
            "new_only": true,
            "since": "2026-06-01",
            "state": "all"
          },
          "rows": [
            {
              "amount": 43638,
              "amount_band": "< $50K",
              "as_published_date": "2026-07-18",
              "awarding_agency": "Department of Health and Human Services",
              "awarding_sub_agency": "National Institutes of Health",
              "description": null,
              "entity_id": "3fffdec5-d647-4f8c-812c-1a9360a7ff67",
              "event_date": "2026-07-22",
              "event_key": "subaward:f579625f2ee0e9208404a6e80638cf86",
              "first_time_subawardee": true,
              "naics": null,
              "naics_desc": null,
              "pop_city": "LOUISVILLE",
              "pop_state": null,
              "prime": "UNIVERSITY OF LOUISVILLE",
              "prime_uei": "E1KJM4T54MK6",
              "psc_code": null,
              "recipient_first_subaward_date": "2026-07-22",
              "recipient_subaward_count": 1,
              "sub_uei": "UCEJSA1HCRE1",
              "subaward_type": "sub-grant",
              "subawardee": "ROLLINS COLLEGE"
            }
          ]
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/feeds/subawards",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "properties": {
            "agency": {
              "description": "Awarding agency or sub-agency name fragment.",
              "examples": [
                "health"
              ],
              "type": "string"
            },
            "cursor": {
              "description": "Opaque page cursor — pass the previous page's next_cursor unchanged.",
              "examples": [
                "eyJkIjoiMjAyNi0wNy0yMiIsImsiOiJmNTc5NjI1ZiJ9"
              ],
              "type": "string"
            },
            "limit": {
              "description": "Rows per page (default 500, cap 1000).",
              "examples": [
                500
              ],
              "type": "integer"
            },
            "min_amount": {
              "description": "Minimum subaward amount in USD.",
              "examples": [
                50000
              ],
              "type": "integer"
            },
            "naics": {
              "description": "NAICS code prefix(es), CSV.",
              "examples": [
                "5415"
              ],
              "type": "string"
            },
            "new_only": {
              "description": "true = only first-time subawardees (sub-recipients with NO prime award on record).",
              "examples": [
                "true"
              ],
              "type": "string"
            },
            "since": {
              "description": "Only subawards with an action date on or after this date (YYYY-MM-DD).",
              "examples": [
                "2026-06-01"
              ],
              "type": "string"
            },
            "state": {
              "description": "Place-of-performance state code(s), CSV.",
              "examples": [
                "TX"
              ],
              "type": "string"
            }
          },
          "required": [],
          "type": "object"
        }
      },
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.govparse.io/v1/feeds/subawards"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.govparse.io/v1/feeds/subawards");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.govparse.io/v1/feeds/subawards")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/14564.json, and this resource appears in /discovery/resources and /discovery/search.