Parameter | Type |
---|---|
id | STRING |
ein | STRING |
search | STRING |
category | STRING |
state | STRING |
zip_code | STRING |
limit | NUMBER |
page | NUMBER |
[
{
"description": "Get a list of nonprofits",
"name": "getNonprofits",
"parameters": {
"properties": {
"id": {
"type": "string"
},
"ein": {
"type": "string"
},
"search": {
"type": "string"
},
"category": {
"type": "string",
"enum": [
"Current Issues",
"Arts and Culture",
"Education",
"Environment and Climate",
"Animals",
"Healthcare",
"Human Services",
"International Relief",
"Religion",
"Female Empowerment",
"Gun Violence Prevention and Victim Support",
"Disaster Preparedness and Relief Services",
"Voting Rights and Election Laws",
"Black-Founded Nonprofits",
"LGBTQIA+",
"Mental Health Awareness",
"Immigration and Refugees",
"Racial Justice and Civil Rights",
"Public Benefit"
]
},
"state": {
"type": "string"
},
"zip_code": {
"type": "string"
},
"limit": {
"type": "number"
},
"page": {
"type": "number"
}
},
"type": "object"
}
},
{
"description": "Get detailed information on a nonprofit.",
"name": "getNonprofit",
"parameters": {
"properties": {
"nonprofit_id": {
"type": "string"
}
},
"required": [
"nonprofit_id"
],
"type": "object"
}
}
]