Which companies just got SBA growth capital — a 7(a) guaranty or 504/CDC debenture? Search
Which companies just got SBA growth capital — a 7(a) guaranty or 504/CDC debenture? Search the SBA 7(a) & 504 FOIA loan-approval roster by company, state, project_state, naics (prefix), program (7A/504), amount_min/amount_max, since (approved on/after a date — the funded-to-grow trigger), business_type, franchise, lender/CDC, entity_id. Returns the borrower, address, gross approval amount, approval date/FY, NAICS, funding lender, and entity-resolved borrower. SBA public-domain records.
1250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-09
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": "1250000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"company": "Ameripro Construction",
"project_state": "CA",
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"approval_date": "2025-03-14",
"approval_fy": 2025,
"business_type": "CORPORATION",
"city": "Austin",
"entity_id": null,
"gross_approval": 750000,
"jobs_supported": 12,
"lender_name": "Example National Bank",
"loan_key": "9f2c1a7b3e5d4c6a8b0f1e2d3c4b5a69",
"naics_code": "332710",
"naics_description": "Machine Shops",
"name": "Example Fabrication LLC",
"program": "7A",
"sba_guaranteed_approval": 562500,
"state": "TX",
"street": "100 Industrial Way",
"zip": "78744"
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/sba/loans/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"amount_max": {
"description": "Maximum gross approval amount (USD).",
"examples": [
5000000
],
"type": "number"
},
"amount_min": {
"description": "Minimum gross approval amount (USD).",
"examples": [
150000
],
"type": "number"
},
"business_type": {
"description": "Business type fragment (Corporation | Individual | Partnership).",
"examples": [
"Corporation"
],
"type": "string"
},
"company": {
"description": "Borrower (company) name — suffix/punctuation-insensitive.",
"examples": [
"Ameripro Construction"
],
"type": "string"
},
"entity_id": {
"description": "Resolved borrower entity UUID (pivots to business360).",
"examples": [
"b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
],
"type": "string"
},
"franchise": {
"description": "Franchise name fragment.",
"examples": [
"Subway"
],
"type": "string"
},
"lender": {
"description": "Funding lender fragment — 7(a) bank name / 504 CDC name.",
"examples": [
"Live Oak"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"naics": {
"description": "NAICS code prefix(es), CSV (e.g. 23 = construction).",
"examples": [
"236220"
],
"type": "string"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"program": {
"description": "7A = 7(a) guaranty, 504 = 504/CDC debenture.",
"examples": [
"7A"
],
"type": "string"
},
"project_state": {
"description": "Project (place-of-use) state code(s), CSV.",
"examples": [
"CA"
],
"type": "string"
},
"since": {
"description": "Approved on/after this date (YYYY-MM-DD) — the growth-capital recency window.",
"examples": [
"2025-01-01"
],
"type": "string"
},
"sort": {
"description": "approval_date | amount | company | jobs :asc|:desc. Default approval_date:desc.",
"examples": [
"amount:desc"
],
"type": "string"
},
"state": {
"description": "Borrower state code(s), CSV.",
"examples": [
"TX"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/sba/loans/search" # -> 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/sba/loans/search");
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/sba/loans/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14572.json, and this resource appears in /discovery/resources and /discovery/search.