Which small businesses were just approved for an SBA loan? Bulk feed over SBA 7(a) & 504 F
Which small businesses were just approved for an SBA loan? Bulk feed over SBA 7(a) & 504 FOIA loan approvals, newest-first by approval date — a business approved for a federal loan is funded to grow. Cursor-paginated up to 1000/page, filterable by borrower state, program (7A/504), NAICS, minimum amount, or since. Rows carry the borrower, city/state, program, approval amount (banded), lender/CDC, NAICS, and jobs supported. Observational public records as disclosed.
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": {
"program": "7A",
"since": "2026-06-01",
"state": "TX"
},
"type": "http"
},
"output": {
"example": {
"basis": "SBA 7(a) & 504 FOIA loan-approval files, one row per approved loan newest-first by approval_date. approval_amount_band is a coarse size bucket. Observational public records as disclosed — never a credit judgment.",
"feed": "sba-loans",
"page": {
"has_more": true,
"limit": 500,
"next_cursor": "eyJkIjoiMjAyNi0wNi0wMyIsImsiOiJvc2hhOjMxOTAwMTIzNCJ9",
"returned": 500
},
"query": {
"min_amount": "any",
"naics": "all",
"program": "all",
"since": "2026-06-01",
"state": "all"
},
"rows": [
{
"approval_amount": 74700,
"approval_amount_band": "$50K–$150K",
"approval_fy": 2026,
"as_published_date": "2026-07-18",
"borrower": "ROLLIN IN DOUGH FL LLC",
"borrower_city": "Ruskin",
"borrower_state": "FL",
"business_type": "CORPORATION",
"entity_id": null,
"event_date": "2026-06-30",
"event_key": "sba:example-loan-key",
"jobs_supported": 1,
"lender": "Northeast Bank",
"lender_city": "Portland",
"lender_state": "ME",
"loan_status": "EXEMPT",
"naics": "311811",
"naics_description": "Retail Bakeries",
"program": "7A",
"sba_guaranteed_approval": 63495
}
]
},
"type": "json"
}
},
"routeTemplate": "/v1/feeds/sba-loans",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"cursor": {
"description": "Opaque page cursor — pass the previous page's next_cursor unchanged.",
"examples": [
"eyJkIjoiMjAyNi0wNi0zMCIsImsiOiJsb2FuOjEyMyJ9"
],
"type": "string"
},
"limit": {
"description": "Rows per page (default 500, cap 1000).",
"examples": [
500
],
"type": "integer"
},
"min_amount": {
"description": "Minimum gross approval amount in USD.",
"examples": [
150000
],
"type": "integer"
},
"naics": {
"description": "NAICS code prefix(es), CSV.",
"examples": [
"722"
],
"type": "string"
},
"program": {
"description": "Loan program: 7A | 504.",
"examples": [
"7A"
],
"type": "string"
},
"since": {
"description": "Only loans approved on or after this date (YYYY-MM-DD).",
"examples": [
"2026-06-01"
],
"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/feeds/sba-loans" # -> 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/sba-loans");
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/sba-loans")
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/14568.json, and this resource appears in /discovery/resources and /discovery/search.