skills/43-wentorai-research-plugins/skills/research/funding/nsf-award-api-guide/SKILL.md
Search NSF awards and grants with free public API, no auth required
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research nsf-award-api-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The National Science Foundation (NSF) Award Search API provides free, unauthenticated access to a comprehensive database of NSF-funded awards spanning decades of federally funded research in the United States. This API is invaluable for researchers seeking to understand funding trends, identify potential collaborators, or find precedent awards in their field.
The API covers all NSF directorates including Computer and Information Science and Engineering (CISE), Biological Sciences (BIO), Engineering (ENG), Geosciences (GEO), Mathematical and Physical Sciences (MPS), Social, Behavioral and Economic Sciences (SBE), and Education and Human Resources (EHR). Each award record includes principal investigator information, award amounts, abstracts, and institutional details.
No API key or authentication is needed. The service returns JSON or XML and supports a wide range of query parameters for precise filtering.
No authentication is required. The NSF Award Search API is completely open and free to use.
# No API key needed -- just make the request
curl "https://api.nsf.gov/services/v1/awards.json?keyword=quantum+computing"
GET https://api.nsf.gov/services/v1/awards.json?{params}
Key Parameters:
keyword: Full-text search across award title and abstractpiFirstName, piLastName: Filter by principal investigator nameawardeeCity, awardeeStateCode: Filter by institution locationstartDateStart, startDateEnd: Date range (format: MM/DD/YYYY)fundProgramName: NSF program nameawardeeName: Institution nameoffset: Pagination offset (default 1)printFields: Comma-separated list of fields to returnExample: Search for machine learning awards at MIT:
curl -s "https://api.nsf.gov/services/v1/awards.json?\
keyword=machine+learning&\
awardeeName=Massachusetts+Institute+of+Technology&\
printFields=id,title,piFirstName,piLastName,startDate,awardeeName,fundsObligatedAmt,abstractText&\
offset=1" | python3 -m json.tool
Retrieve details for a specific award by its NSF award number.
curl -s "https://api.nsf.gov/services/v1/awards/2345678.json?\
printFields=id,title,piFirstName,piLastName,startDate,expDate,awardeeName,fundsObligatedAmt,abstractText" \
| python3 -m json.tool
import requests
import time
base_url = "https://api.nsf.gov/services/v1/awards.json"
def search_nsf_awards(keyword, year_start, year_end, max_results=100):
"""Search NSF awards and return structured results."""
results = []
offset = 1
while len(results) < max_results:
params = {
"keyword": keyword,
"startDateStart": f"01/01/{year_start}",
"startDateEnd": f"12/31/{year_end}",
"printFields": "id,title,piFirstName,piLastName,startDate,awardeeName,fundsObligatedAmt",
"offset": offset
}
resp = requests.get(base_url, params=params)
data = resp.json()
awards = data.get("response", {}).get("award", [])
if not awards:
break
results.extend(awards)
offset += 25
time.sleep(0.5)
return results[:max_results]
awards = search_nsf_awards("large language models", 2022, 2025)
total_funding = sum(int(a.get("fundsObligatedAmt", 0)) for a in awards)
print(f"Found {len(awards)} awards, total funding: ${total_funding:,}")
for a in awards[:5]:
print(f" [{a['id']}] {a['title']} — ${int(a.get('fundsObligatedAmt', 0)):,}")
Grant Prospecting: Search for awards in your field to understand typical funding amounts, common program solicitations, and successful framing of research projects. Analyze abstracts of funded proposals for vocabulary and scope.
Collaborator Discovery: Search by keyword and explore the PI network to identify active researchers and institutions. Cross-reference with publication databases to find potential collaborators.
Funding Landscape Analysis: Track funding volumes over time for specific keywords or programs to identify emerging priorities and declining areas. Useful for strategic planning and grant writing.
Institutional Benchmarking: Compare award counts and funding totals across institutions for a given field or directorate.
offset to paginate)printFields to reduce response size and improve performancedevelopment
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.