# Simpler.Grants.gov — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and discover federal funding opportunities available through Grants.gov, then retrieve detailed information about grants, loans, and other financial assistance programs that match your needs. Access comprehensive opportunity details including eligibility requirements, funding amounts, and application deadlines all in one place.

**Category:** Government & Public Data | **Website:** [simpler.grants.gov/search?utm_source=Grants.gov](https://simpler.grants.gov/search?utm_source=Grants.gov) | **Docs:** [parse.bot/marketplace/d47fccca-256b-40a3-94b0-bd56bc073c10/simpler-grants-gov-api](https://parse.bot/marketplace/d47fccca-256b-40a3-94b0-bd56bc073c10/simpler-grants-gov-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-simpler-grants-gov-api-d47fccca/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_opportunity

Retrieve full details for a single funding opportunity by its UUID. Returns comprehensive information including description, eligibility requirements, award details, contact information, documents, and history.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `opportunity_id` | string | Yes | UUID of the opportunity (e.g. 5406f037-5877-4f0a-8a81-76fe01e9b388). Obtained from search_opportunities results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-simpler-grants-gov-api-d47fccca/get_opportunity \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"opportunity_id":"<string>"}'
```

### search_opportunities

Full-text search across all federal funding opportunities. Supports filtering by status, funding instrument, eligibility, and category. Results are paginated with 25 items per page and sortable by relevance, dates, title, or award amounts. Each result includes summary fields; use get_opportunity with the returned opportunity_id for full details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by funding activity category (e.g. health, education, environment). Omit for all. |
| `eligibility` | string | No | Filter by eligible applicant type (e.g. state_governments, individuals, small_businesses). Omit for all. |
| `funding_instrument` | string | No | Filter by funding instrument type. Valid values: grant, cooperative_agreement, procurement_contract, other. Omit for all. |
| `page` | integer | No | Page number (1-based). Each page returns up to 25 results. |
| `query` | string | No | Free-text search query matching opportunity titles and descriptions. |
| `sort_by` | string | No | Sort order for results. |
| `status` | string | No | Comma-separated opportunity statuses to include. Valid values: posted, forecasted, closed, archived. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-simpler-grants-gov-api-d47fccca/search_opportunities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","eligibility":"<string>","funding_instrument":"<string>","page":"<integer>","query":"<string>","sort_by":"<string>","status":"<string>"}'
```
