# Federal R&D Funding Profile

> Federal R&D Funding Profile is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a complete federal R&D funding profile for a company, organization, or principal investigator by fusing NIH RePORTER, NSF, and SBIR/STTR public records, including all awards, amounts, agencies, tech clusters, and computed aggregates.

## Facts

- Endpoint: GET https://payai.agentstools.dev/funding/profile
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/federal-r-d-funding-profile-0fd7f435
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a6x2w8WRFMdJnb0hiIpwZ

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 federal-r-d-funding-profile-0fd7f435
```

Example prompt: Can you pull the full federal R&D funding profile for Moderna — I want to see all their NIH, NSF, and SBIR awards, the total non-dilutive funding they've received, a breakdown by agency and year, and what technology areas they've been funded in?

## When to prefer this

Prefer this endpoint when you need a comprehensive, cross-agency federal funding history for a single company, organization, or PI — especially when you want pre-computed aggregates (total non-dilutive funding, agency breakdowns, technology clusters) without manually querying NIH RePORTER, NSF Award Search, and SBIR.gov separately. Best for due diligence on startups, competitive intelligence, academic hiring decisions, or grant landscape analysis.

## Known failure modes

- Entity not found — company, organization, or PI name doesn't match any records in NIH RePORTER, NSF, or SBIR/STTR databases
- Ambiguous name — multiple entities match the provided name, returning merged or incorrect results
- No awards in filtered range — min_year or agencies filter excludes all results, returning empty award list
- Payment required — x402 payment of $0.03 USDC must be completed before data is returned
- Rate limiting or upstream data source unavailability causing delayed or partial results

## How this service works

Received R&D-funding profile of a company, organization or principal investigator, fused from NIH RePORTER, NSF and SBIR/STTR public records. Give a company or organization or PI name and get every federal research award it received with amounts, agencies, years, tech focus and abstracts, plus computed aggregates: total non-dilutive funding, breakdown by agency and by year, technology clusters, and active-award count.

## Output

A structured funding profile containing a list of every federal research award received (with award amounts, agency, sub-agency, fiscal year, tech focus, and abstract), plus computed aggregates: total non-dilutive funding received, funding breakdown by agency, funding breakdown by year, technology clusters, and count of currently active awards.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "pi": {
       "type": "string",
       "description": "Principal-investigator name to profile"
      },
      "company": {
       "type": "string",
       "description": "Company name to resolve to received awards"
      },
      "agencies": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Optional filter to these funding agencies or sub-agencies, e.g. NIH, NSF, NIAID (matched against agency and sub-agency)."
      },
      "min_year": {
       "type": "integer",
       "maximum": 2100,
       "minimum": 1980,
       "description": "Only awards with fiscal year at or after this"
      },
      "organization": {
       "type": "string",
       "description": "Organization/awardee name (university, institute, firm)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/federal-r-d-funding-profile-0fd7f435/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
