# GovParse SBA Loan Approvals Feed

> GovParse SBA Loan Approvals Feed is a paid API for AI agents from api.govparse.io, paid per call via x402, $25/call, status unknown (last checked 2026-09-15).

Returns a cursor-paginated bulk feed of recently approved SBA 7(a) and 504 FOIA loan records, filterable by state, program, NAICS, amount, and date.

## Facts

- Endpoint: GET https://api.govparse.io/v1/feeds/sba-loans
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-sba-loan-approvals-feed-abde51f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q5JoegLQM9VAw2i6B6T4w

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability govparse-sba-loan-approvals-feed-abde51f5
```

Example prompt: Pull the latest SBA 7(a) loan approvals in Texas since 2026-06-01, minimum $150,000, up to 500 rows — I want to see which small businesses just got federally funded to grow.

## When to prefer this

Choose this endpoint when you need bulk, structured, up-to-date SBA loan approval records from public FOIA data and want to filter by geography, sector, program type, or funding threshold. It is particularly well-suited for lead generation against newly funded businesses, economic monitoring, competitive intelligence, and compliance research. Prefer it over manual FOIA requests or static datasets when you need machine-readable, cursor-paginated output at scale with flexible filtering.

## Known failure modes

- Invalid or malformed cursor returns 400 bad request
- Unsupported state or NAICS code format returns 400 validation error
- min_amount or limit out of accepted range returns 400
- No matching records for given filters returns empty result array
- Rate limiting or payment failure returns 402 payment required
- Stale or delayed FOIA data may lag actual SBA approval dates

## How this service works

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.

## Output

A paginated JSON array of SBA loan approval records, each containing the borrower name, city and state, loan program (7A or 504), banded approval amount, lender or CDC name, NAICS code, jobs supported figure, and approval date. The response also includes a next_cursor token for fetching subsequent pages and metadata about the total result set.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "limit": {
     "type": "integer",
     "examples": [
      500
     ],
     "description": "Rows per page (default 500, cap 1000)."
    },
    "naics": {
     "type": "string",
     "examples": [
      "722"
     ],
     "description": "NAICS code prefix(es), CSV."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-06-01"
     ],
     "description": "Only loans approved on or after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "TX"
     ],
     "description": "Borrower state code(s), CSV."
    },
    "cursor": {
     "type": "string",
     "examples": [
      "eyJkIjoiMjAyNi0wNi0zMCIsImsiOiJsb2FuOjEyMyJ9"
     ],
     "description": "Opaque page cursor — pass the previous page's next_cursor unchanged."
    },
    "program": {
     "type": "string",
     "examples": [
      "7A"
     ],
     "description": "Loan program: 7A | 504."
    },
    "min_amount": {
     "type": "integer",
     "examples": [
      150000
     ],
     "description": "Minimum gross approval amount in USD."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-sba-loan-approvals-feed-abde51f5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
