Essentials v3 API search examples

Make the most of Essentials v3 organization search with these helpful examples

📘

POST Request Body

Essentials API is a POST call with the search parameters passed in the request body.

👍

Easily Build Your Search Query Using the API Docs

Take all the guess-work out of building your search query by using the built-in query generator on the Essentials v3 API docs page

Search using an organization's EIN or name

Search for the organization by inserting the EIN into the "search_terms" parameter.

{
 "search_terms": "13-2875808"
}
{
    "code": 200,
    "message": "Request was processed successfully!",
    "took": 22,
    "time": "2022-12-06 22:54:13Z",
    "results_count": 1,
    "page_count": 1,
    "errors": [],
    "hits": [
        {
            "organization": {
                "organization_id": "6908410",
                "ein": "13-2875808",
                "organization_name": "Human Rights Watch, Inc.",
                "also_known_as": "HRW",
                "mission": "Human Rights Watch defends the rights of people worldwide. We scrupulously investigate abuses, expose the facts widely, and pressure those with power to respect rights and secure justice. Human Rights Watch is an independent, international organization that works as part of a vibrant movement to uphold human dignity and advance the cause of human rights for all.",
                "website_url": "www.hrw.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7933415&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/13-2875808",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Kenneth Roth",
                "contact_email": "[email protected]",
                "contact_phone": "(212) 290-4700",
                "contact_title": "Executive Director",
                "number_of_employees": "346",
                "ruling_year": 1976
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "350 5th Ave Fl 34",
                "address_line_2": "",
                "city": "New York City",
                "state": "NY",
                "zip": "10118",
                "msa": "NY - New York, NY-NJ",
                "county": "New York, NY",
                "latitude": 40.7484,
                "longitude": -73.9846
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG060000",
                        "population_served_description": "Victims and oppressed people"
                    },
                    {
                        "population_served_code": "PG040000",
                        "population_served_description": "Incarcerated people"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG010100",
                        "population_served_description": "Immigrants"
                    },
                    {
                        "population_served_code": "PG010000",
                        "population_served_description": "Immigrants and migrants"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC030000",
                        "population_served_description": "Intersex people"
                    },
                    {
                        "population_served_code": "PC010000",
                        "population_served_description": "LGBTQ people"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "Q70",
                        "ntee_code_description": "International Human Rights"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 70485098.0,
                    "total_expenses": 83697899.0,
                    "total_assets": 201979141.0
                },
                "bmf_gross_receipts": 99626820.0,
                "bmf_assets": 242488346.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-07-07T16:47:53.0000000",
                "profile_last_modified": "2022-07-07T16:47:53.0000000",
                "dei_last_modified": "2022-07-07T00:00:00.0000000",
                "financials_last_modified": "2021-06-12T13:00:08.0000000",
                "last_modified": "2022-11-15T12:27:00.0000000"
            }
        }
    ]
}

Search for the organization using its name in the "search_terms" parameter.

{
 "search_terms": "University District Food Bank"
}
{
    "code": 200,
    "message": "Request was processed successfully!",
    "took": 202,
    "time": "2022-12-06 22:54:46Z",
    "results_count": 6716,
    "page_count": 269,
    "errors": [],
    "hits": [
        {
            "organization": {
                "organization_id": "8315557",
                "ein": "91-1224834",
                "organization_name": "University District Food Bank",
                "also_known_as": "University District Food Bank (UDFB)",
                "mission": "Building  a hunger-free Northeast Seattle by providing our neighbors with reliable access to healthy food and life-changing resources",
                "website_url": "http://www.udistrictfoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=4413589&approved=True",
                "profile_level": "None",
                "profile_year": null,
                "profile_link": "https://www.guidestar.org/profile/91-1224834",
                "profile_logo": "",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Joe Gruber",
                "contact_email": "[email protected]",
                "contact_phone": "(206) 523-7060 x709",
                "contact_title": "Executive Director",
                "number_of_employees": "9",
                "ruling_year": 1984
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "5017 Roosevelt Way NE",
                "address_line_2": "",
                "city": "Seattle",
                "state": "WA",
                "zip": "98105",
                "msa": "WA - Seattle-Everett",
                "county": "King, WA",
                "latitude": 47.6651,
                "longitude": -122.3174
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030100",
                        "population_served_description": "Homeless people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 5888084.0,
                    "total_expenses": 4785584.0,
                    "total_assets": 5277840.0
                },
                "bmf_gross_receipts": 6379503.0,
                "bmf_assets": 6354078.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2020-09-18T19:00:03.0000000",
                "profile_last_modified": "2019-09-17T14:48:46.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "2021-06-19T11:00:06.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7366705",
                "ein": "33-0072922",
                "organization_name": "Feeding America Riverside | San Bernardino Counties",
                "also_known_as": "FARSB and Feeding America Riverside|San Bernardino",
                "mission": "Our mission is to alleviate hunger in the Inland Empire.",
                "website_url": "www.feedingamericaie.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7526778&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/33-0072922",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Carolyn Solar",
                "contact_email": "[email protected]",
                "contact_phone": "(951) 359-4757 x109",
                "contact_title": "Philanthropy Director",
                "number_of_employees": "56",
                "ruling_year": 1985
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2950 Jefferson St Ste A",
                "address_line_2": "",
                "city": "Riverside",
                "state": "CA",
                "zip": "92504",
                "msa": "CA - Riverside-San Bernardino-Ontario",
                "county": "Riverside, CA",
                "latitude": 33.9249,
                "longitude": -117.4068
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE060000",
                        "population_served_description": "Indigenous peoples"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 59621367.0,
                    "total_expenses": 54947485.0,
                    "total_assets": 11670770.0
                },
                "bmf_gross_receipts": 59621367.0,
                "bmf_assets": 11670770.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-02-09T10:07:32.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2022-02-07T15:17:19.0000000",
                "financials_last_modified": "2022-06-27T05:00:24.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7068444",
                "ein": "22-2986809",
                "organization_name": "Good Shepherd Food Bank",
                "also_known_as": "Good Shepherd Food Bank of Maine",
                "mission": "The mission of Good Shepherd Food Bank is to eliminate hunger in Maine by sourcing and distributing nutritious food to people in need, building strong community partnerships, and mobilizing the public in the fight to end hunger",
                "website_url": "http://www.gsfb.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8117181&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/22-2986809",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Kristen Miale",
                "contact_email": "[email protected]",
                "contact_phone": "(207) 782-3554",
                "contact_title": "President",
                "number_of_employees": "96",
                "ruling_year": 1989
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 1807",
                "address_line_2": "",
                "city": "Auburn",
                "state": "ME",
                "zip": "04211",
                "msa": "ME - Lewiston-Auburn",
                "county": "Androscoggin, ME",
                "latitude": 44.0926,
                "longitude": -70.2394
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K30",
                        "ntee_code_description": "Food Service, Free Food Distribution Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 69626051.0,
                    "total_expenses": 60940263.0,
                    "total_assets": 25546371.0
                },
                "bmf_gross_receipts": 115118481.0,
                "bmf_assets": 53999694.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-09-12T10:16:48.0000000",
                "profile_last_modified": "2022-09-12T10:16:48.0000000",
                "dei_last_modified": "2021-07-27T09:43:41.0000000",
                "financials_last_modified": "2021-03-26T23:00:09.0000000",
                "last_modified": "2022-11-15T12:27:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7470043",
                "ein": "36-3203648",
                "organization_name": "Northern Illinois Food Bank",
                "also_known_as": "",
                "mission": "Northern Illinois Food Bank's mission is to provide nutritious food and resources for our neighbors, with dignity, equity and convenience, through partnerships and innovation.",
                "website_url": "www.solvehungertoday.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7650091&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/36-3203648",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Hester Bury",
                "contact_email": "[email protected]",
                "contact_phone": "(630) 443-6910 x124",
                "contact_title": "Director of Corporate and Foundation Giving",
                "number_of_employees": "215",
                "ruling_year": 1982
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "273 Dearborn Ct",
                "address_line_2": "",
                "city": "Geneva",
                "state": "IL",
                "zip": "60134",
                "msa": "IL - Chicago",
                "county": "Kane, IL",
                "latitude": 41.8805,
                "longitude": -88.3335
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SM020000",
                        "subject_code_description": "Food security"
                    },
                    {
                        "subject_code": "SM000000",
                        "subject_code_description": "Agriculture, fishing and forestry"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PH020000",
                        "population_served_description": "People with diseases and illnesses"
                    },
                    {
                        "population_served_code": "PH000000",
                        "population_served_description": "Health"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K30",
                        "ntee_code_description": "Food Service, Free Food Distribution Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 205418067.0,
                    "total_expenses": 193402575.0,
                    "total_assets": 70178062.0
                },
                "bmf_gross_receipts": 224932147.0,
                "bmf_assets": 70178062.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-03-16T12:59:06.0000000",
                "profile_last_modified": "2022-03-16T12:59:06.0000000",
                "dei_last_modified": "2022-02-16T09:38:27.0000000",
                "financials_last_modified": "2022-06-27T17:00:24.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8164492",
                "ein": "75-2222686",
                "organization_name": "East Texas Food Bank",
                "also_known_as": "East Texas Food Bank",
                "mission": "The East Texas Food Bank exists to fight hunger and feed hope in East Texas.",
                "website_url": "www.easttexasfoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8276963&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/75-2222686",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Dennis Cullinane",
                "contact_email": "[email protected]",
                "contact_phone": "(903) 617-2005",
                "contact_title": "Chief Executive Officer",
                "number_of_employees": "80",
                "ruling_year": 1988
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3201 Robertson Rd",
                "address_line_2": "",
                "city": "Tyler",
                "state": "TX",
                "zip": "75701",
                "msa": "TX - Tyler",
                "county": "Smith, TX",
                "latitude": 32.333,
                "longitude": -95.3347
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K30",
                        "ntee_code_description": "Food Service, Free Food Distribution Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 40555370.0,
                    "total_expenses": 38166456.0,
                    "total_assets": 18711815.0
                },
                "bmf_gross_receipts": 61851430.0,
                "bmf_assets": 32550822.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-06-06T10:41:52.0000000",
                "profile_last_modified": "2022-11-01T10:17:14.0000000",
                "dei_last_modified": "2022-06-06T00:00:00.0000000",
                "financials_last_modified": "2021-06-14T23:00:07.0000000",
                "last_modified": "2022-11-01T10:17:14.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7547152",
                "ein": "38-2156255",
                "organization_name": "Gleaners Community Food Bank, Inc.",
                "also_known_as": "GCFB, Gleaners",
                "mission": "Gleaners Community Food Bank, with broad community support, fights hunger in southeastern Michigan. In collaboration with our member agencies, the Feeding America network, and our program partners, we provide millions of pounds of donated and purchased food to people in need. In so doing, Gleaners is committed to distributing nutritional, high-quality​ food. Through education and advocacy, we will reduce reliance on the emergency food system. Gleaners adopts best practices and cost effective systems and procedures to achieve the highest possible return on its human and financial resources. Gleaners fulfills its role with a sense of compassion and urgency while nourishing, sustaining and advancing hope in our community.",
                "website_url": "http://www.gcfb.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8166201&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/38-2156255",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Stacy Averill",
                "contact_email": "[email protected]",
                "contact_phone": "(313) 923-3535 x322",
                "contact_title": "Senior Director, Marketing",
                "number_of_employees": "152",
                "ruling_year": 1977
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2131 Beaufait St",
                "address_line_2": "",
                "city": "Detroit",
                "state": "MI",
                "zip": "48207",
                "msa": "MI - Detroit",
                "county": "Wayne, MI",
                "latitude": 42.3536,
                "longitude": -83.0133
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K30",
                        "ntee_code_description": "Food Service, Free Food Distribution Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 120810438.0,
                    "total_expenses": 105591505.0,
                    "total_assets": 35933919.0
                },
                "bmf_gross_receipts": 120912578.0,
                "bmf_assets": 35933919.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-09-28T16:53:44.0000000",
                "profile_last_modified": "2022-09-28T16:53:44.0000000",
                "dei_last_modified": "2021-08-24T14:51:29.0000000",
                "financials_last_modified": "2021-09-11T05:00:11.0000000",
                "last_modified": "2022-10-14T09:41:06.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8105804",
                "ein": "73-1184980",
                "organization_name": "Community Food Bank of Eastern Oklahoma",
                "also_known_as": "Food Bank",
                "mission": "To feed the hungry of eastern Oklahoma through a network of Partners and engage our communities in ending hunger.  Our vision is food security, with dignity, for all eastern Oklahomans.",
                "website_url": "http://www.okfoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6599976&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/73-1184980",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Lori Long",
                "contact_email": "[email protected]",
                "contact_phone": "(918) 585-2800",
                "contact_title": "CEO",
                "number_of_employees": "107",
                "ruling_year": 1986
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1304 N Kenosha Ave",
                "address_line_2": "",
                "city": "Tulsa",
                "state": "OK",
                "zip": "74106",
                "msa": "OK - Tulsa",
                "county": "Tulsa, OK",
                "latitude": 36.1741,
                "longitude": -95.9822
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ070000",
                        "population_served_description": "Veterans"
                    },
                    {
                        "population_served_code": "PJ040000",
                        "population_served_description": "Retired people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030100",
                        "population_served_description": "Homeless people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P60",
                        "ntee_code_description": "Emergency Assistance (Food, Clothing, Cash)"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 70589274.0,
                    "total_expenses": 57279029.0,
                    "total_assets": 38936502.0
                },
                "bmf_gross_receipts": 97657323.0,
                "bmf_assets": 69259421.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-03-09T17:41:57.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-03-09T16:31:27.0000000",
                "financials_last_modified": "2021-06-21T09:00:06.0000000",
                "last_modified": "2022-11-15T12:27:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8153945",
                "ein": "75-1785357",
                "organization_name": "North Texas Food Bank",
                "also_known_as": "NTFB",
                "mission": "To close the hunger gap in North Texas by providing access to nutritious food.",
                "website_url": "www.ntfb.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6600103&approved=True",
                "profile_level": "Gold",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/75-1785357",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Anna Kurian",
                "contact_email": "[email protected]",
                "contact_phone": "(214) 270-2059",
                "contact_title": "Senior Director of Marketing and Communications",
                "number_of_employees": "236",
                "ruling_year": 1981
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3677 Mapleshade Ln",
                "address_line_2": "",
                "city": "Plano",
                "state": "TX",
                "zip": "75075",
                "msa": "TX - Dallas-Fort Worth",
                "county": "Collin, TX",
                "latitude": 33.0033,
                "longitude": -96.762
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SE130602",
                        "subject_code_description": "Nutrition"
                    },
                    {
                        "subject_code": "SE130600",
                        "subject_code_description": "Physical fitness"
                    },
                    {
                        "subject_code": "SE130000",
                        "subject_code_description": "Public health"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 202605139.0,
                    "total_expenses": 171096544.0,
                    "total_assets": 120714949.0
                },
                "bmf_gross_receipts": 265445987.0,
                "bmf_assets": 158266901.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-03-10T17:01:39.0000000",
                "profile_last_modified": "2022-02-22T14:25:03.0000000",
                "dei_last_modified": "2021-03-10T16:01:11.0000000",
                "financials_last_modified": "2021-06-15T09:00:07.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7898064",
                "ein": "57-0725560",
                "organization_name": "Harvest Hope Food Bank",
                "also_known_as": "DAMIEN CURRY",
                "mission": "Mission:  The mission of Harvest Hope is transforming lives by feeding the hungry and building a healthy and hopeful hunger-free tomorrow.  We accomplish this goal by collecting, storing and distributing food and related items to more than 400 qualified, non-profit agencies engaged in feeding the needy, elderly, disabled, and seriously ill families and children throughout counties in central South Carolina. Today, Harvest Hope Food Bank serves 20 counties: Calhoun, Chester, Chesterfield, Clarendon, Darlington, Dillon, Fairfield, Florence, Greenville, Kershaw, Laurens, Lee, Lexington, Marion, Marlboro, Newberry, Orangeburg, Richland, Saluda and Sumter.",
                "website_url": "http://www.harvesthope.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8062038&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/57-0725560",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Miss. April Slice",
                "contact_email": "[email protected]",
                "contact_phone": "(803) 254-4432 x1125",
                "contact_title": "Development Assistant",
                "number_of_employees": "98",
                "ruling_year": 1982
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 451",
                "address_line_2": "",
                "city": "Columbia",
                "state": "SC",
                "zip": "29202",
                "msa": "SC - Columbia",
                "county": "Richland, SC",
                "latitude": 34.0232,
                "longitude": -81.0303
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K30",
                        "ntee_code_description": "Food Service, Free Food Distribution Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 59708056.0,
                    "total_expenses": 53654845.0,
                    "total_assets": 14296480.0
                },
                "bmf_gross_receipts": 52907942.0,
                "bmf_assets": 18459507.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-08-23T11:26:12.0000000",
                "profile_last_modified": "2022-08-23T11:26:12.0000000",
                "dei_last_modified": "2022-08-23T10:52:10.0000000",
                "financials_last_modified": "2021-09-10T17:00:17.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7033631",
                "ein": "20-4374795",
                "organization_name": "Jacobs & Cushman San Diego Food Bank",
                "also_known_as": "North County Food Bank",
                "mission": "The Jacobs & Cushman San Diego Food Bank provides nutritious food to people in need, advocates for the hungry and educates the public about hunger-related issues.",
                "website_url": "https://sandiegofoodbank.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7975749&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/20-4374795",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Chris Carter",
                "contact_email": "[email protected]",
                "contact_phone": "(858) 863-5131",
                "contact_title": "Vice President of Development & Communications",
                "number_of_employees": "89",
                "ruling_year": 2006
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "9850 Distribution Ave",
                "address_line_2": "",
                "city": "San Diego",
                "state": "CA",
                "zip": "92121",
                "msa": "CA - San Diego",
                "county": "San Diego, CA",
                "latitude": 32.8862,
                "longitude": -117.1632
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD020000",
                        "population_served_description": "Parents"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010100",
                        "population_served_description": "Infants and toddlers"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P60",
                        "ntee_code_description": "Emergency Assistance (Food, Clothing, Cash)"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 82380607.0,
                    "total_expenses": 70479361.0,
                    "total_assets": 38873012.0
                },
                "bmf_gross_receipts": 126811618.0,
                "bmf_assets": 60844619.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-07-22T18:30:52.0000000",
                "profile_last_modified": "2022-07-22T18:43:09.0000000",
                "dei_last_modified": "2022-07-22T00:00:00.0000000",
                "financials_last_modified": "2021-06-15T13:00:14.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7322631",
                "ein": "31-0979404",
                "organization_name": "God's Pantry Food Bank, Inc.",
                "also_known_as": "",
                "mission": "Reducing hunger by working together to feed Kentucky communities.",
                "website_url": "www.GodsPantryFoodBank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7207924&approved=True",
                "profile_level": "Gold",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/31-0979404",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mrs. Karen Griffin",
                "contact_email": "[email protected]",
                "contact_phone": "(859) 288-5325",
                "contact_title": "Development Director",
                "number_of_employees": "71",
                "ruling_year": 1980
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1685 Jaggie Fox Way",
                "address_line_2": "",
                "city": "Lexington",
                "state": "KY",
                "zip": "40511",
                "msa": "KY - Lexington",
                "county": "Fayette, KY",
                "latitude": 38.0856,
                "longitude": -84.5174
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P60",
                        "ntee_code_description": "Emergency Assistance (Food, Clothing, Cash)"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 64168141.0,
                    "total_expenses": 59922836.0,
                    "total_assets": 16854704.0
                },
                "bmf_gross_receipts": 80106494.0,
                "bmf_assets": 30744581.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-10-25T12:03:40.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-10-25T11:19:07.0000000",
                "financials_last_modified": "2021-06-18T17:00:08.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7883890",
                "ein": "58-1376648",
                "organization_name": "Atlanta Community Food Bank, Inc.",
                "also_known_as": "ACFB",
                "mission": "The Atlanta Community Food Bank works to end hunger across metro Atlanta and north Georgia with the food, people, and big ideas needed to make sure all members of our community have access to enough nourishment to live a healthy and productive life.We all need nutritious food to live the lives we imagine. Yet far too many people in our own community experience hunger every day, including children, seniors, and working families.Through more than 600 nonprofit partners, we help more than 700,000 people get healthy food every year. Our goal is that, by 2025, all hungry people in our service area will have access to the nutritious meals they need when they need them. It takes the power of our whole community to make that possible. Join us at ACFB.org.",
                "website_url": "www.acfb.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8021226&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/58-1376648",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Sarah Fonder-Kristy",
                "contact_email": "[email protected]",
                "contact_phone": "(678) 553-5960",
                "contact_title": "CDO",
                "number_of_employees": "197",
                "ruling_year": 1980
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3400 N Desert Dr",
                "address_line_2": "",
                "city": "Atlanta",
                "state": "GA",
                "zip": "30344",
                "msa": "GA - Atlanta",
                "county": "Fulton, GA",
                "latitude": 33.6779,
                "longitude": -84.454
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 231326752.0,
                    "total_expenses": 225402429.0,
                    "total_assets": 106263342.0
                },
                "bmf_gross_receipts": 231459991.0,
                "bmf_assets": 106263342.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-08-09T09:42:54.0000000",
                "profile_last_modified": "2022-08-09T09:42:54.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "2022-05-31T13:00:22.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7213377",
                "ein": "23-7353532",
                "organization_name": "St. Mary's Food Bank",
                "also_known_as": "St. Mary's",
                "mission": "St. Mary’s Food Bank serves to alleviate hunger through the gathering and distribution of food while encouraging self-sufficiency, collaboration, advocacy and education.",
                "website_url": "www.firstfoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8189456&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/23-7353532",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Sarah Stuckey",
                "contact_email": "[email protected]",
                "contact_phone": "(602) 343-3161",
                "contact_title": "Chief Communications Officer",
                "number_of_employees": "253",
                "ruling_year": 1974
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2831 N 31st Ave",
                "address_line_2": "",
                "city": "Phoenix",
                "state": "AZ",
                "zip": "85009",
                "msa": "AZ - Phoenix-Mesa",
                "county": "Maricopa, AZ",
                "latitude": 33.4798,
                "longitude": -112.1257
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD040000",
                        "population_served_description": "Non-adult children"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PC050000",
                        "population_served_description": "Men and boys"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 270368241.0,
                    "total_expenses": 269140688.0,
                    "total_assets": 45304868.0
                },
                "bmf_gross_receipts": 271088739.0,
                "bmf_assets": 45304868.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-09-29T18:19:19.0000000",
                "profile_last_modified": "2022-10-06T16:38:56.0000000",
                "dei_last_modified": "2022-09-29T00:00:00.0000000",
                "financials_last_modified": "2022-06-27T23:00:22.0000000",
                "last_modified": "2022-10-06T16:38:56.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7428800",
                "ein": "35-1483868",
                "organization_name": "Gleaners Food Bank of Indiana, Inc.",
                "also_known_as": "Gleaners",
                "mission": "To lead the fight against hunger.",
                "website_url": "http://www.gleaners.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8232721&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/35-1483868",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Sarah Estell",
                "contact_email": "[email protected]",
                "contact_phone": "(317) 829-1765",
                "contact_title": "Senior Director of Strategic Communication",
                "number_of_employees": "95",
                "ruling_year": 1980
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3737 Waldemere Ave",
                "address_line_2": "",
                "city": "Indianapolis",
                "state": "IN",
                "zip": "46241",
                "msa": "IN - Indianapolis",
                "county": "Marion, IN",
                "latitude": 39.7082,
                "longitude": -86.2618
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 139884309.0,
                    "total_expenses": 134612338.0,
                    "total_assets": 41319775.0
                },
                "bmf_gross_receipts": 186048804.0,
                "bmf_assets": 54236669.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-09-27T13:21:06.0000000",
                "profile_last_modified": "2022-10-18T16:59:04.0000000",
                "dei_last_modified": "2022-09-29T00:00:00.0000000",
                "financials_last_modified": "2021-06-13T13:00:08.0000000",
                "last_modified": "2022-10-18T16:59:04.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6915492",
                "ein": "13-3179546",
                "organization_name": "Food Bank For New York City",
                "also_known_as": "",
                "mission": "The mission of Food Bank For New York City is to end hunger by organizing food, information and support for community survival, and dignity. Food Bank For New York City has been working to end food poverty in our five boroughs for 35 years. As the city’s largest hunger-relief organization, we employ a multifaceted approach centered on helping low-income New Yorkers overcome their circumstances and achieve greater independence.",
                "website_url": "https://www.foodbanknyc.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8326321&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/13-3179546",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Sarah Ross",
                "contact_email": "[email protected]",
                "contact_phone": "(212) 566-7855 x8370",
                "contact_title": "Director, Administration & Board Engagement",
                "number_of_employees": "158",
                "ruling_year": 1983
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "39 Broadway Fl 10",
                "address_line_2": "",
                "city": "New York City",
                "state": "NY",
                "zip": "10006",
                "msa": "NY - New York, NY-NJ",
                "county": "New York, NY",
                "latitude": 40.7086,
                "longitude": -74.0135
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 144517137.0,
                    "total_expenses": 122468602.0,
                    "total_assets": 57044886.0
                },
                "bmf_gross_receipts": 238728736.0,
                "bmf_assets": 69662085.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-11-14T08:56:11.0000000",
                "profile_last_modified": "2022-11-14T08:56:11.0000000",
                "dei_last_modified": "2022-11-14T00:00:00.0000000",
                "financials_last_modified": "2021-06-20T07:00:08.0000000",
                "last_modified": "2022-11-14T08:56:11.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7753229",
                "ein": "52-1135690",
                "organization_name": "Maryland Food Bank, Inc.",
                "also_known_as": "MFB",
                "mission": "Feeding people, strengthening communities, and ending hunger for more Marylanders.",
                "website_url": "https://www.mdfoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8334123&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/52-1135690",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Denelle Joynes",
                "contact_email": "[email protected]",
                "contact_phone": "(410) 737-8282 x220",
                "contact_title": "",
                "number_of_employees": "156",
                "ruling_year": 1979
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2200 Halethorpe Farms Rd",
                "address_line_2": "",
                "city": "Halethorpe",
                "state": "MD",
                "zip": "21227",
                "msa": "MD - Baltimore",
                "county": "Baltimore, MD",
                "latitude": 39.2275,
                "longitude": -76.6854
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 91220420.0,
                    "total_expenses": 73463212.0,
                    "total_assets": 54768374.0
                },
                "bmf_gross_receipts": 144135074.0,
                "bmf_assets": 74940482.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-09-29T12:41:44.0000000",
                "profile_last_modified": "2022-11-15T16:54:24.0000000",
                "dei_last_modified": "2022-09-29T00:00:00.0000000",
                "financials_last_modified": "2021-06-21T07:00:09.0000000",
                "last_modified": "2022-11-15T16:54:24.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7610581",
                "ein": "41-2120170",
                "organization_name": "Midwest Food Bank NFP",
                "also_known_as": "Midwest Food Bank",
                "mission": "As a faith based organization it is the mission of Midwest Food Bank to alleviate hunger and poverty by gathering and distributing food donations to not-for-profits and disaster sites without cost to the recipients.",
                "website_url": "https://midwestfoodbank.org/home",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7934964&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/41-2120170",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "54",
                "ruling_year": 2004
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2031 Warehouse Rd",
                "address_line_2": "",
                "city": "Normal",
                "state": "IL",
                "zip": "61761",
                "msa": "IL - Bloomington-Normal",
                "county": "Mclean, IL",
                "latitude": 40.5463,
                "longitude": -88.9892
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SJ060000",
                        "subject_code_description": "Disasters and emergency management"
                    },
                    {
                        "subject_code": "SJ000000",
                        "subject_code_description": "Public safety"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 420255647.0,
                    "total_expenses": 394000699.0,
                    "total_assets": 60209514.0
                },
                "bmf_gross_receipts": 450331214.0,
                "bmf_assets": 66677904.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-02-07T12:44:41.0000000",
                "profile_last_modified": "2022-07-08T10:23:27.0000000",
                "dei_last_modified": "2022-07-08T00:00:00.0000000",
                "financials_last_modified": "2021-06-14T19:00:15.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7690973",
                "ein": "47-0637701",
                "organization_name": "Food Bank for the Heartland",
                "also_known_as": "Food Bank for the Heartland",
                "mission": "To eliminate hunger in the Heartland by ensuring consistent access to healthy foods through community partnerships.",
                "website_url": "www.FoodBankHeartland.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7774156&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/47-0637701",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Brian Barks",
                "contact_email": "[email protected]",
                "contact_phone": "(402) 331-1213",
                "contact_title": "President and CEO",
                "number_of_employees": "66",
                "ruling_year": 1983
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "10525 J St",
                "address_line_2": "",
                "city": "Omaha",
                "state": "NE",
                "zip": "68127",
                "msa": "NE - Omaha, NE-IA",
                "county": "Douglas, NE",
                "latitude": 41.2142,
                "longitude": -96.0781
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD040000",
                        "population_served_description": "Non-adult children"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P60",
                        "ntee_code_description": "Emergency Assistance (Food, Clothing, Cash)"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 41511909.0,
                    "total_expenses": 35194763.0,
                    "total_assets": 20809459.0
                },
                "bmf_gross_receipts": 62781330.0,
                "bmf_assets": 23348686.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-02-12T13:40:19.0000000",
                "profile_last_modified": "2022-05-05T13:00:28.0000000",
                "dei_last_modified": "2022-02-12T12:04:26.0000000",
                "financials_last_modified": "2021-06-14T17:00:13.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8114350",
                "ein": "74-2122979",
                "organization_name": "San Antonio Food Bank",
                "also_known_as": "SAFB",
                "mission": "The mission of the San Antonio Food Bank is to fight hunger in Southwest Texas through food distribution, programs, education, and advocacy.",
                "website_url": "http://www.safoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8234630&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/74-2122979",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Eric Cooper",
                "contact_email": "[email protected]",
                "contact_phone": "(210) 337-3663",
                "contact_title": "President & CEO",
                "number_of_employees": "325",
                "ruling_year": 1980
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "5200 Enrique M Barrera Pkwy",
                "address_line_2": "",
                "city": "San Antonio",
                "state": "TX",
                "zip": "78227",
                "msa": "TX - San Antonio",
                "county": "Bexar, TX",
                "latitude": 29.4091,
                "longitude": -98.637
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030400",
                        "population_served_description": "Working poor"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K30",
                        "ntee_code_description": "Food Service, Free Food Distribution Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 178446449.0,
                    "total_expenses": 158584275.0,
                    "total_assets": 90909868.0
                },
                "bmf_gross_receipts": 239945906.0,
                "bmf_assets": 108784731.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-04-07T12:28:10.0000000",
                "profile_last_modified": "2022-10-19T12:32:29.0000000",
                "dei_last_modified": "2022-09-22T00:00:00.0000000",
                "financials_last_modified": "2022-05-30T19:00:40.0000000",
                "last_modified": "2022-10-19T12:32:29.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7658768",
                "ein": "43-1253102",
                "organization_name": "St. Louis Area Food Bank, Inc.",
                "also_known_as": "St. Louis Area Foodbank",
                "mission": "To build a stronger bi-state region by nourishing people, empowering communities, and transforming systems.",
                "website_url": "www.stlfoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7929127&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/43-1253102",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Sarah Scott",
                "contact_email": "[email protected]",
                "contact_phone": "(314) 292-6262 x104",
                "contact_title": "",
                "number_of_employees": "84",
                "ruling_year": 1982
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "70 Corporate Woods Dr",
                "address_line_2": "",
                "city": "Bridgeton",
                "state": "MO",
                "zip": "63044",
                "msa": "MO - St. Louis, MO-IL",
                "county": "Saint Louis, MO",
                "latitude": 38.786,
                "longitude": -90.4624
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SE130602",
                        "subject_code_description": "Nutrition"
                    },
                    {
                        "subject_code": "SE130600",
                        "subject_code_description": "Physical fitness"
                    },
                    {
                        "subject_code": "SE130000",
                        "subject_code_description": "Public health"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 135456826.0,
                    "total_expenses": 127790915.0,
                    "total_assets": 46989895.0
                },
                "bmf_gross_receipts": 139636604.0,
                "bmf_assets": 46989895.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-07-06T15:31:13.0000000",
                "profile_last_modified": "2022-07-06T15:31:13.0000000",
                "dei_last_modified": "2022-07-06T00:00:00.0000000",
                "financials_last_modified": "2022-06-27T13:00:29.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8075102",
                "ein": "72-0956468",
                "organization_name": "Second Harvest Food Bank of Greater New Orleans and Acadiana",
                "also_known_as": "Second Harvest Food Bank",
                "mission": "Second Harvest is leading the fight against hunger in South Louisiana through food access, advocacy, education and disaster response. One in five families in South Louisiana is at risk of hunger. We provide 34 million meals annually to 210,000 people in need across 23-parishes. Every $1 donation provides 4 meals to a hungry family. When you donate to Second Harvest, you help create a brighter future for our entire community.",
                "website_url": "www.no-hunger.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7635652&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/72-0956468",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Jay Vise",
                "contact_email": "[email protected]",
                "contact_phone": "(504) 729-2830",
                "contact_title": "Director of Marketing and Communications",
                "number_of_employees": "117",
                "ruling_year": 1984
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "700 Edwards Ave",
                "address_line_2": "",
                "city": "New Orleans",
                "state": "LA",
                "zip": "70123",
                "msa": "LA - New Orleans",
                "county": "Jefferson, LA",
                "latitude": 29.9546,
                "longitude": -90.0751
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 103286806.0,
                    "total_expenses": 91182174.0,
                    "total_assets": 43599007.0
                },
                "bmf_gross_receipts": 173017200.0,
                "bmf_assets": 78144650.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-03-11T14:27:54.0000000",
                "profile_last_modified": "2022-03-11T14:27:54.0000000",
                "dei_last_modified": "2022-03-10T11:06:42.0000000",
                "financials_last_modified": "2021-06-16T13:00:10.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8248584",
                "ein": "84-0772672",
                "organization_name": "Food Bank of the Rockies",
                "also_known_as": "",
                "mission": "We ignite the power of community to nourish people facing hunger.",
                "website_url": "https://www.foodbankrockies.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7596760&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/84-0772672",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Aditi Desai",
                "contact_email": "[email protected]",
                "contact_phone": "(303) 371-9250 x219",
                "contact_title": "",
                "number_of_employees": "139",
                "ruling_year": 1984
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "10700 E 45th Ave",
                "address_line_2": "",
                "city": "Denver",
                "state": "CO",
                "zip": "80239",
                "msa": "CO - Denver-Boulder",
                "county": "Denver, CO",
                "latitude": 39.7787,
                "longitude": -104.8658
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SE130602",
                        "subject_code_description": "Nutrition"
                    },
                    {
                        "subject_code": "SE130600",
                        "subject_code_description": "Physical fitness"
                    },
                    {
                        "subject_code": "SE130000",
                        "subject_code_description": "Public health"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 143204094.0,
                    "total_expenses": 127107556.0,
                    "total_assets": 45324091.0
                },
                "bmf_gross_receipts": 197247468.0,
                "bmf_assets": 66205554.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-03-17T18:46:17.0000000",
                "profile_last_modified": "2022-03-02T10:54:39.0000000",
                "dei_last_modified": "2021-03-19T15:45:13.0000000",
                "financials_last_modified": "2021-09-11T03:00:11.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7723331",
                "ein": "51-0192519",
                "organization_name": "Community Food Bank Inc., dba Community Food Bank of Southern Arizona",
                "also_known_as": "Community Food Bank of Southern Arizona",
                "mission": "We change lives in the communities we serve by feeding the hungry today and building a healthy, hunger-free tomorrow.The Community Food Bank of Southern Arizona serves residents in the following counties:Pima, Cochise, Santa Cruz, Graham, Greenlee.",
                "website_url": "www.communityfoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6712111&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/51-0192519",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Sio Castillo",
                "contact_email": "[email protected]",
                "contact_phone": "(520) 882-3308",
                "contact_title": "Chief Development Officer",
                "number_of_employees": "170",
                "ruling_year": 1976
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3003 S Country Club Rd",
                "address_line_2": "",
                "city": "Tucson",
                "state": "AZ",
                "zip": "85713",
                "msa": "AZ - Tucson",
                "county": "Pima, AZ",
                "latitude": 32.1892,
                "longitude": -110.9265
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SM020000",
                        "subject_code_description": "Food security"
                    },
                    {
                        "subject_code": "SM010000",
                        "subject_code_description": "Agriculture"
                    },
                    {
                        "subject_code": "SM000000",
                        "subject_code_description": "Agriculture, fishing and forestry"
                    },
                    {
                        "subject_code": "SK000000",
                        "subject_code_description": "Public affairs"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ080000",
                        "population_served_description": "Farmers"
                    },
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 175475803.0,
                    "total_expenses": 160738028.0,
                    "total_assets": 56187098.0
                },
                "bmf_gross_receipts": 191557495.0,
                "bmf_assets": 56187098.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-04-06T08:37:38.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-04-06T05:36:43.0000000",
                "financials_last_modified": "2022-06-27T03:00:22.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7887511",
                "ein": "58-1514800",
                "organization_name": "MANNA FoodBank, Inc.",
                "also_known_as": "",
                "mission": "MANNA FoodBank's mission is to involve, educate, and unite people in the work of ending hunger in Western North Carolina (WNC). MANNA and our network of 250 partner agencies work together to alleviate hunger among our neighbors living in 16 counties of WNC and the Qualla Boundary. MANNA is a proud member of Feeding America, the nation's largest domestic hunger relief organization.At MANNA, we hold people experiencing food insecurity at the center of our actions and decisions. We envision a hunger-free WNC where each person can participate, prosper, and access food that is both nourishing and in keeping with their culture. Our food programs and public policy efforts aim to build a society where everyone can live, learn, earn, and thrive—because no one should be hungry.",
                "website_url": "http://www.mannafoodbank.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8203803&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/58-1514800",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mary Nesbitt",
                "contact_email": "[email protected]",
                "contact_phone": "(828) 299-3663",
                "contact_title": "CDO",
                "number_of_employees": "80",
                "ruling_year": 1984
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "627 Swannanoa River Rd",
                "address_line_2": "",
                "city": "Asheville",
                "state": "NC",
                "zip": "28805",
                "msa": "NC - Asheville",
                "county": "Buncombe, NC",
                "latitude": 35.5753,
                "longitude": -82.5014
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K31",
                        "ntee_code_description": "Food Banks, Food Pantries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 54416982.0,
                    "total_expenses": 39327613.0,
                    "total_assets": 28015233.0
                },
                "bmf_gross_receipts": 54516236.0,
                "bmf_assets": 28015233.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-10-11T08:40:20.0000000",
                "profile_last_modified": "2022-10-12T13:08:53.0000000",
                "dei_last_modified": "2022-10-11T08:11:44.0000000",
                "financials_last_modified": "2022-06-27T23:00:22.0000000",
                "last_modified": "2022-10-12T13:08:53.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7753667",
                "ein": "52-1202644",
                "organization_name": "Blue Ridge Area Food Bank, Inc.",
                "also_known_as": "",
                "mission": "Our MISSION is to provide nourishing food to our neighbors in need through vibrant community partnerships and passionate public support.",
                "website_url": "http://www.brafb.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7849975&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/52-1202644",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Michael McKee",
                "contact_email": "[email protected]",
                "contact_phone": "(540)",
                "contact_title": "(540) 248-3663",
                "number_of_employees": "70",
                "ruling_year": 1981
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 937",
                "address_line_2": "96 Laurel Hill Road,",
                "city": "Verona",
                "state": "VA",
                "zip": "24482",
                "msa": "",
                "county": "Augusta, VA",
                "latitude": 38.2036,
                "longitude": -79.0037
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG010000",
                        "population_served_description": "Immigrants and migrants"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K30",
                        "ntee_code_description": "Food Service, Free Food Distribution Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 58553203.0,
                    "total_expenses": 54313553.0,
                    "total_assets": 22085468.0
                },
                "bmf_gross_receipts": 65448744.0,
                "bmf_assets": 32743315.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-05-25T13:42:32.0000000",
                "profile_last_modified": "2022-06-06T11:40:14.0000000",
                "dei_last_modified": "2021-03-24T14:22:36.0000000",
                "financials_last_modified": "2021-06-13T23:00:08.0000000",
                "last_modified": "2022-09-13T16:11:00.0000000"
            }
        }
    ]
}

Search using keywords and filtering for city, state, and search terms

Search using keywords and filtering for city and state.

{
     "filters": {
          "geography": {
               "state": [
                    "FL"
               ],
               "city": [
                    "Miami"
               ]
          }
     },
     "search_terms": "climate resilience"
}
{
    "code": 200,
    "message": "Request was processed successfully!",
    "took": 63,
    "time": "2022-12-06 22:55:30Z",
    "results_count": 5,
    "page_count": 1,
    "errors": [],
    "hits": [
        {
            "organization": {
                "organization_id": "8030190",
                "ein": "65-0988321",
                "organization_name": "Bonefish & Tarpon Trust",
                "also_known_as": "BTT",
                "mission": "To conserve bonefish, tarpon, and permit--the species, their habitats and the fisheries they comprise through science-based conservation, education, and advocacy.",
                "website_url": "www.bonefishtarpontrust.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6826269&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/65-0988321",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "James McDuffie",
                "contact_email": "[email protected]",
                "contact_phone": "(786) 618-9479",
                "contact_title": "President & CEO",
                "number_of_employees": "13",
                "ruling_year": 2001
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2937 SW 27th Ave Ste 203",
                "address_line_2": "",
                "city": "Miami",
                "state": "FL",
                "zip": "33133",
                "msa": "FL - Miami",
                "county": "Miami-dade, FL",
                "latitude": 25.7368,
                "longitude": -80.2377
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SC060200",
                        "subject_code_description": "Nature education"
                    },
                    {
                        "subject_code": "SC060000",
                        "subject_code_description": "Environmental education"
                    },
                    {
                        "subject_code": "SC040102",
                        "subject_code_description": "Aquatic wildlife protection"
                    },
                    {
                        "subject_code": "SC040100",
                        "subject_code_description": "Wildlife biodiversity"
                    },
                    {
                        "subject_code": "SC040000",
                        "subject_code_description": "Biodiversity"
                    },
                    {
                        "subject_code": "SC030406",
                        "subject_code_description": "Wetlands"
                    },
                    {
                        "subject_code": "SC030403",
                        "subject_code_description": "Oceans and coastal waters"
                    },
                    {
                        "subject_code": "SC030400",
                        "subject_code_description": "Water resources"
                    },
                    {
                        "subject_code": "SC030000",
                        "subject_code_description": "Natural resources"
                    },
                    {
                        "subject_code": "SC000000",
                        "subject_code_description": "Environment"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "D33",
                        "ntee_code_description": "Fisheries"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 2733363.0,
                    "total_expenses": 2768213.0,
                    "total_assets": 1774065.0
                },
                "bmf_gross_receipts": 4105184.0,
                "bmf_assets": 2159678.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-05-20T12:17:07.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-05-20T10:40:44.0000000",
                "financials_last_modified": "2022-05-29T09:00:15.0000000",
                "last_modified": "2022-09-13T16:11:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8962613",
                "ein": "27-3185735",
                "organization_name": "Cleo Institute Inc",
                "also_known_as": "",
                "mission": "TO EDUCATE & EMPOWER COMMUNITIES TO DEMAND CLIMATE ACTION, ENSURING A SAFE, JUST & HEALTHY ENVIRONMENT FOR ALL.",
                "website_url": "http://www.cleoinstitute.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6706464&approved=True",
                "profile_level": "Silver",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/27-3185735",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Olivia Collins",
                "contact_email": "[email protected]",
                "contact_phone": "(305) 573-5251",
                "contact_title": "Director of Programs",
                "number_of_employees": "8",
                "ruling_year": 2010
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2103 Coral Way Fl 2",
                "address_line_2": "",
                "city": "Miami",
                "state": "FL",
                "zip": "33145",
                "msa": "FL - Miami",
                "county": "Miami-Dade, FL",
                "latitude": 25.7507,
                "longitude": -80.2281
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SJ060200",
                        "subject_code_description": "Disaster preparedness"
                    },
                    {
                        "subject_code": "SJ060000",
                        "subject_code_description": "Disasters and emergency management"
                    },
                    {
                        "subject_code": "SJ000000",
                        "subject_code_description": "Public safety"
                    },
                    {
                        "subject_code": "SC000000",
                        "subject_code_description": "Environment"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "C60",
                        "ntee_code_description": "Environmental Education and Outdoor Survival Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2019,
                    "total_revenue": 1289781.0,
                    "total_expenses": 615412.0,
                    "total_assets": 928804.0
                },
                "bmf_gross_receipts": 1445897.0,
                "bmf_assets": 1163052.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-04-08T12:02:37.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2019-11-26T11:10:57.0000000",
                "financials_last_modified": "2021-03-29T13:00:07.0000000",
                "last_modified": "2022-11-15T12:27:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7041168",
                "ein": "20-5196010",
                "organization_name": "Dream In Green, Inc.",
                "also_known_as": "Green Schools Challenge",
                "mission": "Dream in Green’s mission is to empower individuals, especially youth, to lead in the response to climate change and other environmental challenges facing South Florida..We assist diverse organizations, including schools, households, local governments and businesses to reduce their environmental footprint. Through establishing partnerships in our community, we develop, implement and oversee educational programs and workshops that promote environmentally sustainable behaviors among all age groups, with a particular emphasis on K-12 students.",
                "website_url": "www.dreamingreen.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7908099&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/20-5196010",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Barbara Martinez-Guerrero",
                "contact_email": "[email protected]",
                "contact_phone": "(786) 574-4909",
                "contact_title": "Executive Director",
                "number_of_employees": "3",
                "ruling_year": 2006
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2103 Coral Way Center For Social Change 2nd Floor",
                "address_line_2": "",
                "city": "Miami",
                "state": "FL",
                "zip": "33145",
                "msa": "FL - Miami",
                "county": "Miami-Dade, FL",
                "latitude": 25.7537,
                "longitude": -80.2336
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SC060000",
                        "subject_code_description": "Environmental education"
                    },
                    {
                        "subject_code": "SC030600",
                        "subject_code_description": "Energy resources"
                    },
                    {
                        "subject_code": "SC030000",
                        "subject_code_description": "Natural resources"
                    },
                    {
                        "subject_code": "SC000000",
                        "subject_code_description": "Environment"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B90",
                        "ntee_code_description": "Educational Services and Schools - Other"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 299430.0,
                    "total_expenses": 269292.0,
                    "total_assets": 186202.0
                },
                "bmf_gross_receipts": 364051.0,
                "bmf_assets": 277364.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-06-28T12:53:20.0000000",
                "profile_last_modified": "2022-06-28T12:53:20.0000000",
                "dei_last_modified": "2020-06-19T16:55:50.0000000",
                "financials_last_modified": "2021-06-18T13:00:11.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9997334",
                "ein": "86-2827046",
                "organization_name": "Resilience Youth Network",
                "also_known_as": "",
                "mission": "",
                "website_url": "resilienceyouthnetwork.org",
                "logo_url": "",
                "profile_level": "None",
                "profile_year": null,
                "profile_link": "https://www.guidestar.org/profile/86-2827046",
                "profile_logo": "",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "441 NE 52nd St",
                "address_line_2": "",
                "city": "Miami",
                "state": "FL",
                "zip": "33137",
                "msa": "FL - Miami",
                "county": "Miami-dade, FL",
                "latitude": 25.8237,
                "longitude": -80.186
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SJ000000",
                        "subject_code_description": "Public safety"
                    }
                ],
                "population_served_codes": [],
                "ntee_codes": [
                    {
                        "ntee_code": "M01",
                        "ntee_code_description": "Alliance/Advocacy Organizations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "",
                "profile_last_modified": "",
                "dei_last_modified": "",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9469959",
                "ein": "47-3369805",
                "organization_name": "Resilience Action Fund Inc",
                "also_known_as": "RESILIENCE ACTION FUND",
                "mission": "Empower consumers with knowledge and tools to withstand natural hazards with long-lasting and resilient homes and communities, including publications, documentaries, building resilience index, homebuyers' guide and other educational tools.",
                "website_url": "www.buildingresilient.com",
                "logo_url": "",
                "profile_level": "None",
                "profile_year": null,
                "profile_link": "https://www.guidestar.org/profile/47-3369805",
                "profile_logo": "",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "0",
                "ruling_year": 2015
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "441 NE 52nd St",
                "address_line_2": "",
                "city": "Miami",
                "state": "FL",
                "zip": "33137",
                "msa": "FL - Miami",
                "county": "Miami-dade, FL",
                "latitude": 25.8237,
                "longitude": -80.186
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SJ000000",
                        "subject_code_description": "Public safety"
                    }
                ],
                "population_served_codes": [],
                "ntee_codes": [
                    {
                        "ntee_code": "M01",
                        "ntee_code_description": "Alliance/Advocacy Organizations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 199509.0,
                    "total_expenses": 82095.0,
                    "total_assets": 348081.0
                },
                "bmf_gross_receipts": 110932.0,
                "bmf_assets": 374430.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "",
                "profile_last_modified": "",
                "dei_last_modified": "",
                "financials_last_modified": "2021-06-14T15:00:15.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        }
    ]
}

Filter search results by Candid's taxonomy

Filter results by using Candid's taxonomy, up to 25 codes at a time.

{
    "filters": {
      "organization": { 
        "subject_codes":["SB090200"], /*college preparation*/
        "population_served_codes":["PA020100"] /*young adults*/
         }
    }
}
{
    "code": 200,
    "message": "Request was processed successfully!",
    "took": 34,
    "time": "2022-12-06 22:56:57Z",
    "results_count": 88,
    "page_count": 4,
    "errors": [],
    "hits": [
        {
            "organization": {
                "organization_id": "8821043",
                "ein": "26-1607268",
                "organization_name": "KIPP SoCal Public Schools",
                "also_known_as": "KIPP SoCal",
                "mission": "Together with families and communities, we create joyful, academically excellent schools that prepare students with the skills and confidence to pursue the paths they choose — college, career, and beyond — so they can lead fulfilling lives and create a more just world.",
                "website_url": "https://www.kippsocal.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6989447&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/26-1607268",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Joanna Belcher",
                "contact_email": "[email protected]",
                "contact_phone": "(323) 430- x3055",
                "contact_title": "Chief External Impact Officer",
                "number_of_employees": "1259",
                "ruling_year": 2009
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3601 E 1st St",
                "address_line_2": "",
                "city": "Los Angeles",
                "state": "CA",
                "zip": "90063",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 34.036,
                "longitude": -118.1892
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE050000",
                        "population_served_description": "People of Latin American descent"
                    },
                    {
                        "population_served_code": "PE030000",
                        "population_served_description": "People of African descent"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 140910132.0,
                    "total_expenses": 132245208.0,
                    "total_assets": 124148972.0
                },
                "bmf_gross_receipts": 177668807.0,
                "bmf_assets": 124148972.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-07-26T19:00:17.0000000",
                "profile_last_modified": "2022-02-11T11:31:18.0000000",
                "dei_last_modified": "2021-07-26T00:00:00.0000000",
                "financials_last_modified": "2022-06-27T17:00:24.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7663448",
                "ein": "43-1815310",
                "organization_name": "Kanakuk Ministries",
                "also_known_as": "Kanakuk Kamps, Kanakuk KampOut, Link Year, Link Academy, and AfterDark",
                "mission": "Equipping Next Generation Christian Leaders is more than our mission, it is our heartbeat. Since 1926, Kanakuk has welcomed over 500,000 Kampers and 50,000 summer staff from across the country and around the world, equipping them with leadership skills and Biblical truths to impact their schools and communities as examples of Jesus Christ.",
                "website_url": "https://kanakuk.com/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8329795&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/43-1815310",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "John Jensen",
                "contact_email": "[email protected]",
                "contact_phone": "(417) 266-3334",
                "contact_title": "Chief Business Officer",
                "number_of_employees": "2239",
                "ruling_year": 2015
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1353 Lake Shore Dr",
                "address_line_2": "",
                "city": "Branson",
                "state": "MO",
                "zip": "65616",
                "msa": "",
                "county": "Taney, MO",
                "latitude": 36.6495,
                "longitude": -93.2457
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SQ020000",
                        "subject_code_description": "Sports"
                    },
                    {
                        "subject_code": "SQ010100",
                        "subject_code_description": "Camps"
                    },
                    {
                        "subject_code": "SQ010000",
                        "subject_code_description": "Community recreation"
                    },
                    {
                        "subject_code": "SQ000000",
                        "subject_code_description": "Sports and recreation"
                    },
                    {
                        "subject_code": "SP030000",
                        "subject_code_description": "Christianity"
                    },
                    {
                        "subject_code": "SP000000",
                        "subject_code_description": "Religion"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PF010000",
                        "population_served_description": "Christians"
                    },
                    {
                        "population_served_code": "PF000000",
                        "population_served_description": "Religious groups"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "O55",
                        "ntee_code_description": "Religious Leadership, Youth Development"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "10",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 23660219.0,
                    "total_expenses": 29630779.0,
                    "total_assets": 43790256.0
                },
                "bmf_gross_receipts": 40457284.0,
                "bmf_assets": 46087576.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-14T19:02:02.0000000",
                "profile_last_modified": "2022-11-14T19:08:22.0000000",
                "dei_last_modified": "2022-11-14T00:00:00.0000000",
                "financials_last_modified": "2022-05-28T09:00:18.0000000",
                "last_modified": "2022-11-14T19:08:22.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8351295",
                "ein": "91-2082980",
                "organization_name": "Jeffersonville Clark County NAACP Youth Council",
                "also_known_as": "Jeffersonville Youth & College Division",
                "mission": "The mission of the NAACP Youth & College Division shall be to inform youth of the problems affecting African Americans and other racial and ethnic minorities; to advance the economic, education, social and political status of African Americans and other racial and ethnic minorities and their harmonious cooperation with other peoples; to stimulate an appreciation of the African Diaspora and other people of color’s contribution to civilization; and to develop an intelligent, effective youth leadership.",
                "website_url": "",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8133627&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/91-2082980",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Tracey Cobb",
                "contact_email": "[email protected]",
                "contact_phone": "(812) 391-6174",
                "contact_title": "Advisor",
                "number_of_employees": "",
                "ruling_year": 1961
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": false,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": true,
                    "independent": false,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 1464",
                "address_line_2": "",
                "city": "Jeffersonville",
                "state": "IN",
                "zip": "47131",
                "msa": "IN - Louisville, KY-IN",
                "county": "Clark, IN",
                "latitude": 38.3005,
                "longitude": -85.7416
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SR050000",
                        "subject_code_description": "Diversity and intergroup relations"
                    },
                    {
                        "subject_code": "SR040200",
                        "subject_code_description": "Ethnic and racial minority rights"
                    },
                    {
                        "subject_code": "SR040000",
                        "subject_code_description": "Antidiscrimination"
                    },
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SB091200",
                        "subject_code_description": "Tutoring"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "R22",
                        "ntee_code_description": "Minority Rights"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(4) Civic Leagues and Social Welfare Organizations"
                },
                "foundation_code": {
                    "foundation_code": "00",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-18T13:37:20.0000000",
                "profile_last_modified": "2022-09-18T13:37:20.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "",
                "last_modified": "2022-11-15T12:27:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7606737",
                "ein": "41-1968798",
                "organization_name": "College Possible",
                "also_known_as": "",
                "mission": "College Possible makes college admission and success possible for low-income students through an intensive curriculum of coaching and support.",
                "website_url": "www.CollegePossible.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8021158&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/41-1968798",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Al Fan",
                "contact_email": "[email protected]",
                "contact_phone": "(651) 288-9455",
                "contact_title": "CEO",
                "number_of_employees": "775",
                "ruling_year": 2000
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "755 Prior Ave N Ste 210",
                "address_line_2": "",
                "city": "St Paul",
                "state": "MN",
                "zip": "55104",
                "msa": "MN - Minneapolis-St. Paul, MN-WI",
                "county": "Ramsey, MN",
                "latitude": 0.0,
                "longitude": 0.0
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB050200",
                        "subject_code_description": "Undergraduate education"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 25329185.0,
                    "total_expenses": 24105792.0,
                    "total_assets": 23322692.0
                },
                "bmf_gross_receipts": 27589101.0,
                "bmf_assets": 23436452.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-07-14T17:22:59.0000000",
                "profile_last_modified": "2022-08-09T09:11:27.0000000",
                "dei_last_modified": "2022-07-25T00:00:00.0000000",
                "financials_last_modified": "2021-06-19T15:00:05.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9930371",
                "ein": "85-2921806",
                "organization_name": "Futurepreneurs Unlimited",
                "also_known_as": "FPU",
                "mission": "Building entrpreneurial thinking and abilities in youth.",
                "website_url": "https://fpus.org",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-2921806",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "15809 NE 110th St",
                "address_line_2": "",
                "city": "Redmond",
                "state": "WA",
                "zip": "98052",
                "msa": "WA - Seattle-Everett",
                "county": "King, WA",
                "latitude": 47.6988,
                "longitude": -122.128
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050400",
                        "subject_code_description": "Youth organizing"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090300",
                        "subject_code_description": "Computer literacy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PE070000",
                        "population_served_description": "Multiracial people"
                    },
                    {
                        "population_served_code": "PE060000",
                        "population_served_description": "Indigenous peoples"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "O50",
                        "ntee_code_description": "Youth Development Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-29T18:01:53.0000000",
                "profile_last_modified": "2022-09-29T18:01:53.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "",
                "last_modified": "2022-09-29T18:01:53.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9940672",
                "ein": "85-1067852",
                "organization_name": "Discover Your Pace Inc",
                "also_known_as": "Discover Your Pace | DYP",
                "mission": "To uplift systemically oppressed intersectional communities by providing equitable access to innovative advisory programs that foster economic sustainability (Manage), self-efficacy (Advance), social intelligence (Balance), & charitable service (Impact).",
                "website_url": "www.discoveryourpace.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8099867&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-1067852",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "20 Martin Ter",
                "address_line_2": "",
                "city": "Randolph",
                "state": "MA",
                "zip": "02368",
                "msa": "MA - Boston",
                "county": "Norfolk, MA",
                "latitude": 42.1553,
                "longitude": -71.0469
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS060400",
                        "subject_code_description": "Self-advocacy"
                    },
                    {
                        "subject_code": "SS060000",
                        "subject_code_description": "Personal services"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SR040000",
                        "subject_code_description": "Antidiscrimination"
                    },
                    {
                        "subject_code": "SR020800",
                        "subject_code_description": "Economic justice"
                    },
                    {
                        "subject_code": "SR020000",
                        "subject_code_description": "Social rights"
                    },
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SQ010000",
                        "subject_code_description": "Community recreation"
                    },
                    {
                        "subject_code": "SQ000000",
                        "subject_code_description": "Sports and recreation"
                    },
                    {
                        "subject_code": "SN050800",
                        "subject_code_description": "Financial counseling"
                    },
                    {
                        "subject_code": "SN050000",
                        "subject_code_description": "Financial services"
                    },
                    {
                        "subject_code": "SN020301",
                        "subject_code_description": "Job counseling"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SK020000",
                        "subject_code_description": "Leadership development"
                    },
                    {
                        "subject_code": "SK000000",
                        "subject_code_description": "Public affairs"
                    },
                    {
                        "subject_code": "SD040000",
                        "subject_code_description": "Nonprofits"
                    },
                    {
                        "subject_code": "SD030000",
                        "subject_code_description": "Voluntarism"
                    },
                    {
                        "subject_code": "SD000000",
                        "subject_code_description": "Philanthropy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090100",
                        "subject_code_description": "Out-of-school learning"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070200",
                        "subject_code_description": "Continuing education"
                    },
                    {
                        "subject_code": "SB070101",
                        "subject_code_description": "Adult literacy"
                    },
                    {
                        "subject_code": "SB070100",
                        "subject_code_description": "Basic and remedial instruction"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ120000",
                        "population_served_description": "Activists"
                    },
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ030000",
                        "population_served_description": "Self-employed people"
                    },
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG010000",
                        "population_served_description": "Immigrants and migrants"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PC050000",
                        "population_served_description": "Men and boys"
                    },
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC010000",
                        "population_served_description": "LGBTQ people"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P20",
                        "ntee_code_description": "Human Service Organizations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-04T02:51:35.0000000",
                "profile_last_modified": "2022-09-04T03:34:19.0000000",
                "dei_last_modified": "2022-09-04T02:49:58.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10054163",
                "ein": "87-2112015",
                "organization_name": "Foundation for Talent Transformation Inc",
                "also_known_as": "",
                "mission": "The Foundation for Talent Transformation helps individuals thrive by helping them understand themselves and others, embrace learning opportunities, and plan for future jobs.",
                "website_url": "https://www.talenttransformation.com/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8239452&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/87-2112015",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2022
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2395 N Meridian Ave",
                "address_line_2": "",
                "city": "Miami Beach",
                "state": "FL",
                "zip": "33140",
                "msa": "FL - Miami",
                "county": "Miami-dade, FL",
                "latitude": 25.8007,
                "longitude": -80.1347
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN020303",
                        "subject_code_description": "Job retraining"
                    },
                    {
                        "subject_code": "SN020302",
                        "subject_code_description": "Job training"
                    },
                    {
                        "subject_code": "SN020301",
                        "subject_code_description": "Job counseling"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090800",
                        "subject_code_description": "E-learning"
                    },
                    {
                        "subject_code": "SB090300",
                        "subject_code_description": "Computer literacy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020200",
                        "population_served_description": "Older adults"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P50",
                        "ntee_code_description": "Personal Social Services"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Private Operating Foundation"
                },
                "foundation_code": {
                    "foundation_code": "03",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 379102.0,
                "bmf_assets": 262731.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-20T13:19:48.0000000",
                "profile_last_modified": "2022-10-20T14:24:09.0000000",
                "dei_last_modified": "2022-10-20T00:00:00.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-10-20T14:24:09.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6909904",
                "ein": "13-2707665",
                "organization_name": "Phipps Neighborhoods",
                "also_known_as": "Phipps Neighborhoods",
                "mission": "Phipps Neighborhoods works toward a New York City in which no one is caught in the cycle of poverty. We provide children, youth, and families in low-income neighborhoods the opportunities they need to thrive through comprehensive education and career programs, and access to community services.",
                "website_url": "www.phippsny.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7815199&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/13-2707665",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Andre White",
                "contact_email": "[email protected]",
                "contact_phone": "(646) 388-8233",
                "contact_title": "Executive Director and CEO",
                "number_of_employees": "518",
                "ruling_year": 1973
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "902 Broadway Fl 13",
                "address_line_2": "",
                "city": "New York City",
                "state": "NY",
                "zip": "10010",
                "msa": "NY - New York, NY-NJ",
                "county": "New York, NY",
                "latitude": 40.7392,
                "longitude": -73.9898
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050100",
                        "subject_code_description": "Youth services"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS040302",
                        "subject_code_description": "Child care"
                    },
                    {
                        "subject_code": "SS040300",
                        "subject_code_description": "Child welfare"
                    },
                    {
                        "subject_code": "SS040000",
                        "subject_code_description": "Family services"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SN050800",
                        "subject_code_description": "Financial counseling"
                    },
                    {
                        "subject_code": "SN050000",
                        "subject_code_description": "Financial services"
                    },
                    {
                        "subject_code": "SN020304",
                        "subject_code_description": "Job creation and workforce development"
                    },
                    {
                        "subject_code": "SN020302",
                        "subject_code_description": "Job training"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB100000",
                        "subject_code_description": "Early childhood education"
                    },
                    {
                        "subject_code": "SB090300",
                        "subject_code_description": "Computer literacy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090100",
                        "subject_code_description": "Out-of-school learning"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB031000",
                        "subject_code_description": "STEM education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030400",
                        "population_served_description": "Working poor"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020200",
                        "population_served_description": "Older adults"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "S20",
                        "ntee_code_description": "Community, Neighborhood Development, Improvement"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 13207456.0,
                    "total_expenses": 16238811.0,
                    "total_assets": 28930681.0
                },
                "bmf_gross_receipts": 30319775.0,
                "bmf_assets": 46342034.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-05-21T14:48:09.0000000",
                "profile_last_modified": "2022-05-21T14:48:09.0000000",
                "dei_last_modified": "2022-05-21T14:39:25.0000000",
                "financials_last_modified": "2021-06-19T03:00:20.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9973306",
                "ein": "86-2985757",
                "organization_name": "Durham Success Summit Inc",
                "also_known_as": "",
                "mission": "Durham Success Summit has a bold mission to help young Black youth identify, clarify, and sharpen the skills and tools they need to become highly competitive leaders. Through catalytic programming that exposes them to a cross-sector network of supporters, youth will gain access to opportunities in a variety of industries, to move forward towards a life of success and confidence.",
                "website_url": "http://www.dssnc.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7849014&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/86-2985757",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Derek Rhodes",
                "contact_email": "[email protected]",
                "contact_phone": "(919) 627-7407",
                "contact_title": "Executive Director",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "732 9th St # 596",
                "address_line_2": "",
                "city": "Durham",
                "state": "NC",
                "zip": "27705",
                "msa": "NC - Raleigh-Durham-Chapel Hill",
                "county": "Durham, NC",
                "latitude": 36.0088,
                "longitude": -78.9221
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SK020000",
                        "subject_code_description": "Leadership development"
                    },
                    {
                        "subject_code": "SK000000",
                        "subject_code_description": "Public affairs"
                    },
                    {
                        "subject_code": "SD040000",
                        "subject_code_description": "Nonprofits"
                    },
                    {
                        "subject_code": "SD000000",
                        "subject_code_description": "Philanthropy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "W01",
                        "ntee_code_description": "Alliance/Advocacy Organizations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-06-05T17:36:28.0000000",
                "profile_last_modified": "2022-06-05T17:36:28.0000000",
                "dei_last_modified": "2022-02-03T14:10:59.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10007744",
                "ein": "86-2792680",
                "organization_name": "Brave Music Enterprise Inc",
                "also_known_as": "",
                "mission": "BRAVE is a non-profit 501(c)3 charitable organization that works towards transforming inner-city landscapes by empowering urban youth through music, digital media, and performing arts education. BRAVE is an acronym standing for “Bypassing Restrictions and Victoriously Excelling.”  This acronym is a declaration of optimism, strength, confidence, courage, and the resiliency of the human spirit. Our organization believes that giving inner-city youth a sense of hope and gratification through the arts has the power to grow and uplift communities, transform hearts and minds, and ultimately, change the world. BRAVE is dedicated to creating positive, life-changing, and innovative experiences through the education of music, media, and the arts.",
                "website_url": "",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/86-2792680",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3969 Meadows Dr",
                "address_line_2": "",
                "city": "Indianapolis",
                "state": "IN",
                "zip": "46205",
                "msa": "IN - Indianapolis",
                "county": "Marion, IN",
                "latitude": 39.8287,
                "longitude": -86.1118
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090100",
                        "subject_code_description": "Out-of-school learning"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    },
                    {
                        "subject_code": "SA060000",
                        "subject_code_description": "Performing arts"
                    },
                    {
                        "subject_code": "SA010500",
                        "subject_code_description": "Arts education"
                    },
                    {
                        "subject_code": "SA010000",
                        "subject_code_description": "Arts services"
                    },
                    {
                        "subject_code": "SA000000",
                        "subject_code_description": "Arts and culture"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": null,
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 31019.0,
                "bmf_assets": 1.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-01-11T13:00:42.0000000",
                "profile_last_modified": "2022-01-11T13:00:42.0000000",
                "dei_last_modified": "2022-01-11T12:58:02.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9945110",
                "ein": "85-3756579",
                "organization_name": "Alejandro Flores Foundation",
                "also_known_as": "",
                "mission": "To bridge the gap of educational inequity in LA County by supporting the students who need it most. Not only is there an increasingly widening gap in educational opportunities and outcomes in LA County, there is also a significant gap in scholarship funding available for high potential students who don’t score well using traditional metrics like GPA and standardized test scores. AFF aims to close this gap by supporting those who may not have the highest GPA or SAT scores, but display strong morals, grit and determination in the face of adversity. Lastly, we aim to honor Alexx’s memory by giving back to the communities that he called home.",
                "website_url": "afloresfoundation.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7793336&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-3756579",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ricardo Mexia",
                "contact_email": "[email protected]",
                "contact_phone": "(626) 890- x367",
                "contact_title": "Executive Director",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "301 E Foothill Blvd Spc 14",
                "address_line_2": "",
                "city": "Pomona",
                "state": "CA",
                "zip": "91767",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 34.1072,
                "longitude": -117.744
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090500",
                        "subject_code_description": "Student retention"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB050200",
                        "subject_code_description": "Undergraduate education"
                    },
                    {
                        "subject_code": "SB050100",
                        "subject_code_description": "Community college education"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "C36",
                        "ntee_code_description": "Forest Conservation"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-05-12T20:34:01.0000000",
                "profile_last_modified": "2022-05-12T20:34:01.0000000",
                "dei_last_modified": "2021-04-28T11:54:37.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9562918",
                "ein": "81-3988319",
                "organization_name": "The Dignified Learning Project",
                "also_known_as": "",
                "mission": "To Manifest of the Values of Dignity through Student Services, Teacher Collaboration, & Community Engagement.",
                "website_url": "www.thedignifiedlearningproject.org",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/81-3988319",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Charlene Holkenbrink-Monk",
                "contact_email": "[email protected]",
                "contact_phone": "(858) 248-5423",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2016
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "7978 Linda Vista Rd Apt 18",
                "address_line_2": "",
                "city": "San Diego",
                "state": "CA",
                "zip": "92111",
                "msa": "CA - San Diego",
                "county": "San Diego, CA",
                "latitude": 32.8035,
                "longitude": -117.1708
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN030400",
                        "subject_code_description": "Community service"
                    },
                    {
                        "subject_code": "SN030200",
                        "subject_code_description": "Community organizing"
                    },
                    {
                        "subject_code": "SN030000",
                        "subject_code_description": "Community improvement"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SG020000",
                        "subject_code_description": "Sociology"
                    },
                    {
                        "subject_code": "SG000000",
                        "subject_code_description": "Social sciences"
                    },
                    {
                        "subject_code": "SB091100",
                        "subject_code_description": "Reading promotion"
                    },
                    {
                        "subject_code": "SB091000",
                        "subject_code_description": "Parent-teacher involvement"
                    },
                    {
                        "subject_code": "SB090400",
                        "subject_code_description": "Cooperative education"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070101",
                        "subject_code_description": "Adult literacy"
                    },
                    {
                        "subject_code": "SB070100",
                        "subject_code_description": "Basic and remedial instruction"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB060500",
                        "subject_code_description": "Teacher education"
                    },
                    {
                        "subject_code": "SB060000",
                        "subject_code_description": "Graduate and professional education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "W99",
                        "ntee_code_description": "Public, Society Benefit - Multipurpose and Other N.E.C."
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-04-30T23:35:20.0000000",
                "profile_last_modified": "2022-04-30T23:35:20.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9537321",
                "ein": "90-0622536",
                "organization_name": "THE MURALS OF THE MIND PROJECT",
                "also_known_as": "The M.O.M. Project or M.O.M.",
                "mission": "Our mission is to increase youth literacy IQ. This is accomplished by engaging kids, teens and college age youth in the Literacy 360 Workshops Program, featuring diverse, imaginative, fun, and youth-centered workshops, events and mentoring centered around literacy, education and life skills preparedness, and workforce development. Our vision is to awaken the imagination and curiosity of youth by taking a 360-degree approach to learning that tangibly assists in improving life outcomes of young people. M.O.M. strives to promote educational excellence and preparedness and encourage young people to custom design their narratives, expand peer networks, embrace their majesty; celebrate and accept their uniqueness – quirks and all.",
                "website_url": "www.muralsofthemind.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8174949&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/90-0622536",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Kenyetta Overton",
                "contact_email": "[email protected]",
                "contact_phone": "(215) 588-4389",
                "contact_title": "Executive Director",
                "number_of_employees": "",
                "ruling_year": 2016
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1703 Pine St Ste 104",
                "address_line_2": "",
                "city": "Philadelphia",
                "state": "PA",
                "zip": "19103",
                "msa": "PA - Philadelphia, PA-NJ",
                "county": "Philadelphia, PA",
                "latitude": 39.9462,
                "longitude": -75.1699
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SN030400",
                        "subject_code_description": "Community service"
                    },
                    {
                        "subject_code": "SN030000",
                        "subject_code_description": "Community improvement"
                    },
                    {
                        "subject_code": "SN020304",
                        "subject_code_description": "Job creation and workforce development"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090100",
                        "subject_code_description": "Out-of-school learning"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    },
                    {
                        "subject_code": "SA080500",
                        "subject_code_description": "Literature and writing"
                    },
                    {
                        "subject_code": "SA080000",
                        "subject_code_description": "Humanities"
                    },
                    {
                        "subject_code": "SA060600",
                        "subject_code_description": "Spoken word"
                    },
                    {
                        "subject_code": "SA060000",
                        "subject_code_description": "Performing arts"
                    },
                    {
                        "subject_code": "SA000000",
                        "subject_code_description": "Arts and culture"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "O50",
                        "ntee_code_description": "Youth Development Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-02T01:54:33.0000000",
                "profile_last_modified": "2022-10-02T02:03:52.0000000",
                "dei_last_modified": "2022-10-02T00:00:00.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-10-02T02:03:52.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10106492",
                "ein": "88-3862732",
                "organization_name": "The Complex Trauma Research and Advocacy Institute",
                "also_known_as": "Attached2Achieve",
                "mission": "Purpose and Mission:The Complex Trauma Research and Advocacy Institute (a) researches open questions from prior practice about overcoming the conditions that lead to complex trauma and foster care and provide (b) a mentor-ship to cultivate personal preparation to achieve college attendance for those currently in foster care grades 8-12. The Complex Trauma Research and Advocacy Institute conduct practice and action-based research to affect the caring climate in sociological communities required to engender support, encouragement, and validation, e.g., school, church, and family, reducing cumulative trauma and judgment.",
                "website_url": "www.attached2achieve.com",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8367034&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/88-3862732",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Dr. Michael Smart, Ph.D.",
                "contact_email": "[email protected]",
                "contact_phone": "(480) 810-2910",
                "contact_title": "Managing Director",
                "number_of_employees": "",
                "ruling_year": 2022
            },
            "properties": {
                "bmf_status": false,
                "pub78_verified": false,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "522 N Central Ave",
                "address_line_2": "",
                "city": "Phoenix",
                "state": "AZ",
                "zip": "85004",
                "msa": "AZ - Phoenix-Mesa",
                "county": "Maricopa, AZ",
                "latitude": 33.4537,
                "longitude": -112.0738
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS090200",
                        "subject_code_description": "Homeless services"
                    },
                    {
                        "subject_code": "SS090100",
                        "subject_code_description": "Developmental disability services"
                    },
                    {
                        "subject_code": "SS090000",
                        "subject_code_description": "Special population support"
                    },
                    {
                        "subject_code": "SS050900",
                        "subject_code_description": "Religion for youth"
                    },
                    {
                        "subject_code": "SS050600",
                        "subject_code_description": "Economics for youth"
                    },
                    {
                        "subject_code": "SS050400",
                        "subject_code_description": "Youth organizing"
                    },
                    {
                        "subject_code": "SS050300",
                        "subject_code_description": "Youth mentoring"
                    },
                    {
                        "subject_code": "SS050100",
                        "subject_code_description": "Youth services"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS040300",
                        "subject_code_description": "Child welfare"
                    },
                    {
                        "subject_code": "SS040200",
                        "subject_code_description": "Adolescent parenting"
                    },
                    {
                        "subject_code": "SS040000",
                        "subject_code_description": "Family services"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SR040700",
                        "subject_code_description": "Children's rights"
                    },
                    {
                        "subject_code": "SR040300",
                        "subject_code_description": "Disabled persons' rights"
                    },
                    {
                        "subject_code": "SR040000",
                        "subject_code_description": "Antidiscrimination"
                    },
                    {
                        "subject_code": "SR020800",
                        "subject_code_description": "Economic justice"
                    },
                    {
                        "subject_code": "SR020700",
                        "subject_code_description": "Cultural rights"
                    },
                    {
                        "subject_code": "SR020300",
                        "subject_code_description": "Freedom of information"
                    },
                    {
                        "subject_code": "SR020000",
                        "subject_code_description": "Social rights"
                    },
                    {
                        "subject_code": "SR010000",
                        "subject_code_description": "Individual liberties"
                    },
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SG090700",
                        "subject_code_description": "Poverty studies"
                    },
                    {
                        "subject_code": "SG090000",
                        "subject_code_description": "Interdisciplinary studies"
                    },
                    {
                        "subject_code": "SG040000",
                        "subject_code_description": "Psychology and behavioral science"
                    },
                    {
                        "subject_code": "SG000000",
                        "subject_code_description": "Social sciences"
                    },
                    {
                        "subject_code": "SE120000",
                        "subject_code_description": "Mental health care"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    },
                    {
                        "subject_code": "SB091200",
                        "subject_code_description": "Tutoring"
                    },
                    {
                        "subject_code": "SB090500",
                        "subject_code_description": "Student retention"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030900",
                        "subject_code_description": "Child educational development"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050300",
                        "population_served_description": "Researchers"
                    },
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG060000",
                        "population_served_description": "Victims and oppressed people"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD040300",
                        "population_served_description": "Foster and adoptive children"
                    },
                    {
                        "population_served_code": "PD040000",
                        "population_served_description": "Non-adult children"
                    },
                    {
                        "population_served_code": "PD010200",
                        "population_served_description": "Families of choice"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": null,
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-26T14:51:03.0000000",
                "profile_last_modified": "2022-11-26T14:51:03.0000000",
                "dei_last_modified": "2022-11-26T00:00:00.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-11-26T14:51:03.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9968776",
                "ein": "85-2923799",
                "organization_name": "Xceleader",
                "also_known_as": "",
                "mission": "Increase and strengthen Black leadership by providing tools that inspire action and fuel ambition.",
                "website_url": "https://www.xceleader.com",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8376549&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-2923799",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "950 Brittany Park Dr",
                "address_line_2": "",
                "city": "Antioch",
                "state": "TN",
                "zip": "37013",
                "msa": "TN - Nashville",
                "county": "Davidson, TN",
                "latitude": 36.0601,
                "longitude": -86.6722
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN020302",
                        "subject_code_description": "Job training"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SK020000",
                        "subject_code_description": "Leadership development"
                    },
                    {
                        "subject_code": "SK000000",
                        "subject_code_description": "Public affairs"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PE030000",
                        "population_served_description": "People of African descent"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020200",
                        "population_served_description": "Older adults"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "R99",
                        "ntee_code_description": "Civil Rights, Social Action, and Advocacy N.E.C."
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-07-12T13:33:12.0000000",
                "profile_last_modified": "2022-11-29T12:01:13.0000000",
                "dei_last_modified": "2022-11-29T11:54:57.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-11-29T12:01:13.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10057769",
                "ein": "86-1950468",
                "organization_name": "Black Girls Leadership Academy",
                "also_known_as": "BGLA",
                "mission": "Black Girls Leadership Academy seeks to build the self-esteem and self-worth of Black girls by changing their outlook on life, broadening their horizons, and helping them to empower themselves and others. We value the opportunity to enrich the lives of young girls and women aged 11 to 24 years old through mentorship, arts, education, cultural exploration, and community service. At BGLA, Black girls are offered access to enrichment programs and opportunities that place special emphasis on personal development through mentorship and cooperative learning.",
                "website_url": "www.blackgirlslead.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8232968&approved=True",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/86-1950468",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Victoria Gichohi",
                "contact_email": "[email protected]",
                "contact_phone": "(310) 678-1129",
                "contact_title": "Co-Founder",
                "number_of_employees": "",
                "ruling_year": 2022
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1311 N McDivitt Ave",
                "address_line_2": "",
                "city": "Compton",
                "state": "CA",
                "zip": "90221",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 33.9047,
                "longitude": -118.2181
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN030400",
                        "subject_code_description": "Community service"
                    },
                    {
                        "subject_code": "SN030000",
                        "subject_code_description": "Community improvement"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090800",
                        "subject_code_description": "E-learning"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PH040000",
                        "population_served_description": "Pregnant people"
                    },
                    {
                        "population_served_code": "PH010000",
                        "population_served_description": "People with disabilities"
                    },
                    {
                        "population_served_code": "PH000000",
                        "population_served_description": "Health"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE030000",
                        "population_served_description": "People of African descent"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PC040203",
                        "population_served_description": "Senior women"
                    },
                    {
                        "population_served_code": "PC040201",
                        "population_served_description": "Young women"
                    },
                    {
                        "population_served_code": "PC040200",
                        "population_served_description": "Women"
                    },
                    {
                        "population_served_code": "PC040104",
                        "population_served_description": "Adolescent girls"
                    },
                    {
                        "population_served_code": "PC040103",
                        "population_served_description": "Preteen girls"
                    },
                    {
                        "population_served_code": "PC040102",
                        "population_served_description": "Young girls"
                    },
                    {
                        "population_served_code": "PC040100",
                        "population_served_description": "Girls"
                    },
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC030000",
                        "population_served_description": "Intersex people"
                    },
                    {
                        "population_served_code": "PC020000",
                        "population_served_description": "Heterosexuals"
                    },
                    {
                        "population_served_code": "PC010400",
                        "population_served_description": "Transgender people"
                    },
                    {
                        "population_served_code": "PC010300",
                        "population_served_description": "Bisexuals"
                    },
                    {
                        "population_served_code": "PC010100",
                        "population_served_description": "Lesbians"
                    },
                    {
                        "population_served_code": "PC010000",
                        "population_served_description": "LGBTQ people"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B99",
                        "ntee_code_description": "Education N.E.C."
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-18T18:46:45.0000000",
                "profile_last_modified": "2022-10-18T18:46:45.0000000",
                "dei_last_modified": "2022-10-18T15:38:59.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-10-18T18:46:45.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9930923",
                "ein": "85-3048142",
                "organization_name": "Create and Collaborate",
                "also_known_as": "Create + Collaborate",
                "mission": "WE CREATE ENDLESS OPPORTUNITIES FOR UNDERSERVED YOUTH THROUGH COLLABORATIVE PARTNERSHIPS BY PROVIDING THEM WITH THE RESOURCES THEY NEED TO DREAM AND SUCCEED.",
                "website_url": "www.createandco.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6670794&approved=True",
                "profile_level": "Silver",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/85-3048142",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "850 Cotton Depot Ln Apt 238",
                "address_line_2": "",
                "city": "Fort Worth",
                "state": "TX",
                "zip": "76102",
                "msa": "TX - Fort Worth",
                "county": "Tarrant, TX",
                "latitude": 32.7567,
                "longitude": -97.3256
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SQ022200",
                        "subject_code_description": "Sports training"
                    },
                    {
                        "subject_code": "SQ020000",
                        "subject_code_description": "Sports"
                    },
                    {
                        "subject_code": "SQ000000",
                        "subject_code_description": "Sports and recreation"
                    },
                    {
                        "subject_code": "SN030400",
                        "subject_code_description": "Community service"
                    },
                    {
                        "subject_code": "SN030000",
                        "subject_code_description": "Community improvement"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG060100",
                        "population_served_description": "Victims of crime and abuse"
                    },
                    {
                        "population_served_code": "PG060000",
                        "population_served_description": "Victims and oppressed people"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "O99",
                        "ntee_code_description": "Other Youth Development N.E.C."
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-03-29T13:44:56.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-03-29T12:18:08.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9882070",
                "ein": "84-5190933",
                "organization_name": "Record Success Inc",
                "also_known_as": "",
                "mission": "Record Success, Inc. is dedicated to helping students determine their college/career choices and to serving historically disadvantaged groups, first-generation students, and non-traditional populations.",
                "website_url": "http://www.recordsuccess.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7427129&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/84-5190933",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 723",
                "address_line_2": "",
                "city": "Vero Beach",
                "state": "FL",
                "zip": "32961",
                "msa": "",
                "county": "Indian River, FL",
                "latitude": 27.6386,
                "longitude": -80.3973
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050100",
                        "subject_code_description": "Youth services"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SB090800",
                        "subject_code_description": "E-learning"
                    },
                    {
                        "subject_code": "SB090700",
                        "subject_code_description": "Educational testing"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "A33",
                        "ntee_code_description": "Printing, Publishing"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-01-18T13:55:02.0000000",
                "profile_last_modified": "2022-01-18T15:15:55.0000000",
                "dei_last_modified": "2020-12-30T20:59:43.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9317638",
                "ein": "46-5061687",
                "organization_name": "Scholarship America Inc",
                "also_known_as": "Tioga Area Dollars for Scholars",
                "mission": "Since its charter on March 31, 1992, Tioga Area Dollars for Scholars has been successful in awarding over $400,000 in scholarships towards the postsecondary education of Tioga High School graduates and alumni.  The chapter is a nonprofit, community based organization that raises funds to provide scholarships for eligible community applicants.  The goal is to involve the community in supporting local fund raising events for the purpose of raising needed funds.",
                "website_url": "https://tioga.dollarsforscholars.org",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/46-5061687",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Shelby Davis",
                "contact_email": "[email protected]",
                "contact_phone": "(701) 664-3368",
                "contact_title": "Clinic Manager/Foundation Director",
                "number_of_employees": "",
                "ruling_year": 1962
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": true,
                    "independent": false,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 925",
                "address_line_2": "",
                "city": "Tioga",
                "state": "ND",
                "zip": "58852",
                "msa": "",
                "county": "Williams, ND",
                "latitude": 48.3728,
                "longitude": -102.9369
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN050103",
                        "subject_code_description": "Community development finance"
                    },
                    {
                        "subject_code": "SN050100",
                        "subject_code_description": "Development finance"
                    },
                    {
                        "subject_code": "SN050000",
                        "subject_code_description": "Financial services"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SH050103",
                        "subject_code_description": "Financial applications"
                    },
                    {
                        "subject_code": "SH050100",
                        "subject_code_description": "Software applications"
                    },
                    {
                        "subject_code": "SH050000",
                        "subject_code_description": "Information communications technology"
                    },
                    {
                        "subject_code": "SH000000",
                        "subject_code_description": "Information and communications"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PD020000",
                        "population_served_description": "Parents"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B82",
                        "ntee_code_description": "Scholarships, Student Financial Aid, Awards"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-11-24T15:24:34.0000000",
                "profile_last_modified": "2021-11-24T15:24:34.0000000",
                "dei_last_modified": "2021-11-24T14:23:47.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9899191",
                "ein": "85-1160030",
                "organization_name": "Sabinal Alumni",
                "also_known_as": "",
                "mission": "To support Sabinal Independent School District through scholarships that encourage continuing education.",
                "website_url": "wwwsabinalalumni.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7199735&approved=True",
                "profile_level": "Silver",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/85-1160030",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "555 E 5th St Apt 3007",
                "address_line_2": "",
                "city": "Austin",
                "state": "TX",
                "zip": "78701",
                "msa": "TX - Austin-San Marcos",
                "county": "Travis, TX",
                "latitude": 30.2657,
                "longitude": -97.738
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB050200",
                        "subject_code_description": "Undergraduate education"
                    },
                    {
                        "subject_code": "SB050100",
                        "subject_code_description": "Community college education"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PE070000",
                        "population_served_description": "Multiracial people"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B84",
                        "ntee_code_description": "Alumni Associations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-10-21T08:52:32.0000000",
                "profile_last_modified": "2021-10-21T08:52:32.0000000",
                "dei_last_modified": "2021-10-21T07:27:14.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10046619",
                "ein": "87-4741902",
                "organization_name": "CALIFORNIA TRANSFER SUPPORT NETWORK",
                "also_known_as": "",
                "mission": "Our mission is to provide educational support to California Community College students by providing credit evaluations, consulting services, tutoring, and other sources of assistance.",
                "website_url": "transferca.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7824144&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/87-4741902",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2022
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1509 Willow Bend Dr",
                "address_line_2": "",
                "city": "El Cajon",
                "state": "CA",
                "zip": "92019",
                "msa": "CA - San Diego",
                "county": "San Diego, CA",
                "latitude": 32.7948,
                "longitude": -116.9625
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB091200",
                        "subject_code_description": "Tutoring"
                    },
                    {
                        "subject_code": "SB090400",
                        "subject_code_description": "Cooperative education"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB020000",
                        "subject_code_description": "Educational management"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE070000",
                        "population_served_description": "Multiracial people"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PD020400",
                        "population_served_description": "Single parents"
                    },
                    {
                        "population_served_code": "PD020000",
                        "population_served_description": "Parents"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B41",
                        "ntee_code_description": "Community/Junior College"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-05-21T12:24:42.0000000",
                "profile_last_modified": "2022-05-25T12:58:40.0000000",
                "dei_last_modified": "2022-05-21T09:22:51.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9945197",
                "ein": "84-2682994",
                "organization_name": "Light Mission Alliance",
                "also_known_as": "",
                "mission": "To empower communities toward the  development of individuals through tools that encourage education, sustainability, and discipleship.",
                "website_url": "www.lightmissionalliance.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7838401&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/84-2682994",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 3049",
                "address_line_2": "",
                "city": "Shawnee",
                "state": "OK",
                "zip": "74802",
                "msa": "OK - Oklahoma City",
                "county": "Pottawatomie, OK",
                "latitude": 35.3073,
                "longitude": -96.8803
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090500",
                        "subject_code_description": "Student retention"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB031100",
                        "subject_code_description": "Multicultural education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030400",
                        "population_served_description": "Working poor"
                    },
                    {
                        "population_served_code": "PG030300",
                        "population_served_description": "Extremely poor people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B90",
                        "ntee_code_description": "Educational Services and Schools - Other"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-06-01T00:44:17.0000000",
                "profile_last_modified": "2022-06-01T00:44:16.0000000",
                "dei_last_modified": "2021-05-05T14:57:23.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10000022",
                "ein": "85-3176673",
                "organization_name": "Blessed to Be a Blessing",
                "also_known_as": "B2baB",
                "mission": "Blessed to Be a Blessing (B2baB) assists low-income and underrepresented students in achieving equal access to cross-cultural and global experiences through educational programs and scholarships.",
                "website_url": "https://www.blessedscholars.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7978097&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-3176673",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2662 Cherry St",
                "address_line_2": "",
                "city": "Denver",
                "state": "CO",
                "zip": "80207",
                "msa": "CO - Denver-Boulder",
                "county": "Denver, CO",
                "latitude": 39.7554,
                "longitude": -104.9339
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B82",
                        "ntee_code_description": "Scholarships, Student Financial Aid, Awards"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-03-09T07:58:35.0000000",
                "profile_last_modified": "2022-07-25T09:55:57.0000000",
                "dei_last_modified": "2022-07-25T00:00:00.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9958763",
                "ein": "85-4371602",
                "organization_name": "Bridge To Grow Inc",
                "also_known_as": "",
                "mission": "Bridge the opportunity gap by providing free, accessible, and personalized academic help to students in disadvantaged communities.Grow the community by providing mentoring and coaching to students to ignite the growth within the communities.",
                "website_url": "www.bridgegrow.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7722076&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-4371602",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "74 Fennbrook Rd",
                "address_line_2": "",
                "city": "West Hartford",
                "state": "CT",
                "zip": "06119",
                "msa": "CT - Hartford",
                "county": "Hartford, CT",
                "latitude": 41.7514,
                "longitude": -72.7311
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB091200",
                        "subject_code_description": "Tutoring"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG010000",
                        "population_served_description": "Immigrants and migrants"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B90",
                        "ntee_code_description": "Educational Services and Schools - Other"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-04-13T12:10:45.0000000",
                "profile_last_modified": "2022-04-13T12:10:45.0000000",
                "dei_last_modified": "2022-04-13T12:10:13.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9865769",
                "ein": "84-4222969",
                "organization_name": "Flowers Family Reunion Association Scholarship Fund",
                "also_known_as": "Flowers Family Reunion Association",
                "mission": "The Flowers Family Reunion Association Scholarship Fund, a nonprofit organization founded in 2019, is based upon the conviction that an educated society is essential to a healthy democracy. The Scholarship Fund provides access to postsecondary education to members of our community who otherwise would not have the financial means to fulfill their educational goals.The Scholarship Fund sees higher education as a catalyst, an agent of change for individuals, families, communities, and nations. We envision a community that recognizes the importance of educational attainment and assures positive educational outcomes are accessible to all regardless of economic circumstance.",
                "website_url": "http://www.flowersfamilyreunion.com/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7921102&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/84-4222969",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr Timothy Kern",
                "contact_email": "[email protected]",
                "contact_phone": "(816) 200-1994",
                "contact_title": "President and CEO",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "408 SE Weiss Cir",
                "address_line_2": "",
                "city": "Lees Summit",
                "state": "MO",
                "zip": "64063",
                "msa": "MO - Kansas City, MO-KS",
                "county": "Jackson, MO",
                "latitude": 0.0,
                "longitude": 0.0
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030400",
                        "subject_code_description": "Gift distribution"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070200",
                        "subject_code_description": "Continuing education"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B11",
                        "ntee_code_description": "Single Organization Support"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-07-02T05:00:40.0000000",
                "profile_last_modified": "2022-07-02T05:00:40.0000000",
                "dei_last_modified": "2022-07-02T00:00:00.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        }
    ]
}

In the example above, AND operator logic is applied when two filters are used together. This example will return organizations who match college preparation AND young adults

{
    "filters": {
      "organization": { 
        "subject_codes":["SB090200,SB030400"], /*college preparation or secondary education*/
       
         }
    }
}
{
    "code": 200,
    "message": "Request was processed successfully!",
    "took": 91,
    "time": "2022-12-06 22:56:17Z",
    "results_count": 8576,
    "page_count": 344,
    "errors": [],
    "hits": [
        {
            "organization": {
                "organization_id": "6907953",
                "ein": "13-1740010",
                "organization_name": "New York Institute for Special Education",
                "also_known_as": "",
                "mission": "The mission of The New York Institute for Special Education is to provide quality educational programs and support to the students and families in a safe, caring environment, to awaken and inspire student curiosity, lifelong learning, and fulfillment.",
                "website_url": "www.nyise.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7482982&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/13-1740010",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Dr. Bernadette Kappen",
                "contact_email": "[email protected]",
                "contact_phone": "(718) 519-7000",
                "contact_title": "Executive Director",
                "number_of_employees": "310",
                "ruling_year": 1942
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "999 Pelham Pkwy N",
                "address_line_2": "",
                "city": "Bronx",
                "state": "NY",
                "zip": "10469",
                "msa": "NY - New York, NY-NJ",
                "county": "Bronx, NY",
                "latitude": 40.8581,
                "longitude": -73.8566
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB100000",
                        "subject_code_description": "Early childhood education"
                    },
                    {
                        "subject_code": "SB030800",
                        "subject_code_description": "Special needs education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PH010400",
                        "population_served_description": "People with psychosocial disabilities"
                    },
                    {
                        "population_served_code": "PH010200",
                        "population_served_description": "People with vision impairments"
                    },
                    {
                        "population_served_code": "PH010000",
                        "population_served_description": "People with disabilities"
                    },
                    {
                        "population_served_code": "PH000000",
                        "population_served_description": "Health"
                    },
                    {
                        "population_served_code": "PA010100",
                        "population_served_description": "Infants and toddlers"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B28",
                        "ntee_code_description": "Specialized Education Institutions/Schools for Visually or Hearing Impaired, Learning Disabled"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 26654582.0,
                    "total_expenses": 30293927.0,
                    "total_assets": 177923200.0
                },
                "bmf_gross_receipts": 80013613.0,
                "bmf_assets": 238787278.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-01-28T10:44:34.0000000",
                "profile_last_modified": "2022-01-28T10:46:09.0000000",
                "dei_last_modified": "2022-01-27T18:16:35.0000000",
                "financials_last_modified": "2021-06-18T01:00:09.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6907011",
                "ein": "13-2578670",
                "organization_name": "Sponsors for Educational Opportunity",
                "also_known_as": "SEO",
                "mission": "Since 1963, SEO has been an innovator in education, mentorship, peer-to-peer support, the delivery of excellence, and the leveraging of diverse networks and communities to turn untapped potential into newfound greatness, resulting in a more equitable society. Our mission is to create a more equitable society by closing the academic and career opportunity gap for motivated young people from underserved and/or historically excluded communities. Each year, SEO programs serve more than 6,000 young people across America.",
                "website_url": "www.seo-usa.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8216951&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/13-2578670",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Renee Hoskin",
                "contact_email": "[email protected]",
                "contact_phone": "(646) 435-9556",
                "contact_title": "Assistant Director - Marketing and Communiations",
                "number_of_employees": "508",
                "ruling_year": 1965
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "55 Exchange Pl Ste 601",
                "address_line_2": "",
                "city": "New York City",
                "state": "NY",
                "zip": "10005",
                "msa": "NY - New York, NY-NJ",
                "county": "New York, NY",
                "latitude": 40.7061,
                "longitude": -74.0106
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SD000000",
                        "subject_code_description": "Philanthropy"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "O50",
                        "ntee_code_description": "Youth Development Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 34796982.0,
                    "total_expenses": 26945287.0,
                    "total_assets": 51696255.0
                },
                "bmf_gross_receipts": 49109382.0,
                "bmf_assets": 70514583.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-14T16:14:55.0000000",
                "profile_last_modified": "2022-10-14T16:14:55.0000000",
                "dei_last_modified": "2022-10-14T00:00:00.0000000",
                "financials_last_modified": "2022-05-25T17:00:09.0000000",
                "last_modified": "2022-10-14T16:14:55.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7835130",
                "ein": "55-0806673",
                "organization_name": "Bright Star Schools",
                "also_known_as": "Bright Star Schools",
                "mission": "Our mission is to provide holistic, inclusive support for all students to achieve academic excellence and grow their unique talents so that they find joy and fulfillment in higher education, career, and life.",
                "website_url": "www.brightstarschools.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8391340&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/55-0806673",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Olivia Ray",
                "contact_email": "[email protected]",
                "contact_phone": "(703) 795-9664",
                "contact_title": "Development Manager",
                "number_of_employees": "487",
                "ruling_year": 2004
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "5101 Santa Monica Blvd Ste 8",
                "address_line_2": "Pmb 93,",
                "city": "Los Angeles",
                "state": "CA",
                "zip": "90029",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 34.0908,
                "longitude": -118.3005
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030600",
                        "subject_code_description": "Charter school education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 58493438.0,
                    "total_expenses": 51786075.0,
                    "total_assets": 51030520.0
                },
                "bmf_gross_receipts": 56908156.0,
                "bmf_assets": 56517435.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-12-02T13:27:14.0000000",
                "profile_last_modified": "2022-12-02T13:28:42.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "2021-06-15T13:00:14.0000000",
                "last_modified": "2022-12-02T13:28:42.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7198469",
                "ein": "23-7243247",
                "organization_name": "BLAKE SCHOOL",
                "also_known_as": "The Blake School",
                "mission": "The Blake School provides students with an excellent, academically challenging education in a diverse and supportive community committed to a common set of values. Students are expected to participate in an integrated program of academic, artistic and athletic activities in preparation for college, lifelong learning, community service and lives as responsible world citizens.",
                "website_url": "www.blakeschool.org",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/23-7243247",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Dana Berg",
                "contact_email": "[email protected]",
                "contact_phone": "(952) 988-3459",
                "contact_title": "Director of Finance",
                "number_of_employees": "645",
                "ruling_year": 1973
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "110 Blake Rd S",
                "address_line_2": "",
                "city": "Hopkins",
                "state": "MN",
                "zip": "55343",
                "msa": "MN - Minneapolis-St. Paul, MN-WI",
                "county": "Hennepin, MN",
                "latitude": 44.925,
                "longitude": -93.4627
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 47600427.0,
                    "total_expenses": 50992211.0,
                    "total_assets": 169661407.0
                },
                "bmf_gross_receipts": 86856691.0,
                "bmf_assets": 191397009.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-05-05T16:22:15.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-05-05T15:21:45.0000000",
                "financials_last_modified": "2021-06-13T17:00:13.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7490987",
                "ein": "36-4241970",
                "organization_name": "Noble Network of Charter Schools",
                "also_known_as": "Noble Network of Charter Schools",
                "mission": "Noble will ensure that all students have equitable and positive school experiences that equip them to complete college and lead choice-filled lives.",
                "website_url": "http://nobleschools.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7742924&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/36-4241970",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Lorri Marlow",
                "contact_email": "[email protected]",
                "contact_phone": "(312) 521-5287",
                "contact_title": "",
                "number_of_employees": "1933",
                "ruling_year": 1999
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1 N State St Fl 15",
                "address_line_2": "",
                "city": "Chicago",
                "state": "IL",
                "zip": "60602",
                "msa": "IL - Chicago",
                "county": "Cook, IL",
                "latitude": 41.8826,
                "longitude": -87.6279
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB080100",
                        "subject_code_description": "Alumni relations"
                    },
                    {
                        "subject_code": "SB080000",
                        "subject_code_description": "Student services"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 186903293.0,
                    "total_expenses": 181004819.0,
                    "total_assets": 207438075.0
                },
                "bmf_gross_receipts": 201067465.0,
                "bmf_assets": 251287542.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-04-19T13:41:10.0000000",
                "profile_last_modified": "2022-04-22T16:58:42.0000000",
                "dei_last_modified": "2022-04-22T15:58:03.0000000",
                "financials_last_modified": "2021-06-19T21:00:08.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6882375",
                "ein": "11-1630821",
                "organization_name": "Polytechnic Preparatory Country Day School",
                "also_known_as": "Poly Prep",
                "mission": "College preparatory day school that continues to honor the mission of the school's founders, providingan outstanding academic program and a strong, supportive community for the city's brightest and most promising young men and women.",
                "website_url": "www.polyprep.org",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/11-1630821",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Audrius Barzdukas",
                "contact_email": "[email protected]",
                "contact_phone": "(718) 836-9800",
                "contact_title": "Headmaster",
                "number_of_employees": "768",
                "ruling_year": 1946
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "9216 7th Ave",
                "address_line_2": "",
                "city": "Brooklyn",
                "state": "NY",
                "zip": "11228",
                "msa": "NY - New York, NY-NJ",
                "county": "Kings, NY",
                "latitude": 40.6143,
                "longitude": -74.0229
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 66907657.0,
                    "total_expenses": 58049434.0,
                    "total_assets": 119755317.0
                },
                "bmf_gross_receipts": 79869924.0,
                "bmf_assets": 168140721.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-03T08:06:05.0000000",
                "profile_last_modified": "2022-11-03T08:06:05.0000000",
                "dei_last_modified": "2022-11-03T08:06:07.0000000",
                "financials_last_modified": "2021-06-12T07:00:14.0000000",
                "last_modified": "2022-11-03T08:06:05.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8444944",
                "ein": "95-2942582",
                "organization_name": "The San Diego Foundation",
                "also_known_as": "TSDF",
                "mission": "The San Diego Foundation inspires enduring philanthropy and enables community solutions to improve the quality of life in our region.",
                "website_url": "www.sdfoundation.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7931250&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/95-2942582",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "60",
                "ruling_year": 1975
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2508 Historic Decatur Rd Ste 200",
                "address_line_2": "",
                "city": "San Diego",
                "state": "CA",
                "zip": "92106",
                "msa": "CA - San Diego",
                "county": "San Diego, CA",
                "latitude": 32.7281,
                "longitude": -117.2287
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS040303",
                        "subject_code_description": "Child development"
                    },
                    {
                        "subject_code": "SS040300",
                        "subject_code_description": "Child welfare"
                    },
                    {
                        "subject_code": "SS040000",
                        "subject_code_description": "Family services"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SF020000",
                        "subject_code_description": "Technology"
                    },
                    {
                        "subject_code": "SF000000",
                        "subject_code_description": "Science"
                    },
                    {
                        "subject_code": "SE150000",
                        "subject_code_description": "Diseases and conditions"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    },
                    {
                        "subject_code": "SC030500",
                        "subject_code_description": "Land resources"
                    },
                    {
                        "subject_code": "SC030400",
                        "subject_code_description": "Water resources"
                    },
                    {
                        "subject_code": "SC030000",
                        "subject_code_description": "Natural resources"
                    },
                    {
                        "subject_code": "SC000000",
                        "subject_code_description": "Environment"
                    },
                    {
                        "subject_code": "SB091100",
                        "subject_code_description": "Reading promotion"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070102",
                        "subject_code_description": "High school equivalency"
                    },
                    {
                        "subject_code": "SB070100",
                        "subject_code_description": "Basic and remedial instruction"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB040000",
                        "subject_code_description": "Vocational education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    },
                    {
                        "subject_code": "SA000000",
                        "subject_code_description": "Arts and culture"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PH010000",
                        "population_served_description": "People with disabilities"
                    },
                    {
                        "population_served_code": "PH000000",
                        "population_served_description": "Health"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030100",
                        "population_served_description": "Homeless people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020300",
                        "population_served_description": "Seniors"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "T31",
                        "ntee_code_description": "Community Foundations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 147340158.0,
                    "total_expenses": 95120818.0,
                    "total_assets": 1065212876.0
                },
                "bmf_gross_receipts": 390088775.0,
                "bmf_assets": 1302414916.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-06-02T13:36:46.0000000",
                "profile_last_modified": "2022-07-07T11:14:44.0000000",
                "dei_last_modified": "2022-06-01T17:32:02.0000000",
                "financials_last_modified": "2021-06-16T07:00:15.0000000",
                "last_modified": "2022-09-13T16:11:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6798845",
                "ein": "02-0223338",
                "organization_name": "Pinkerton Academy",
                "also_known_as": "",
                "mission": "Mission: Rooted in a community of courtesy, respect, and responsibility, Pinkerton Academy seeks to provide a safe and welcoming environment which prepares all students for success in a changing world.",
                "website_url": "www.pinkertonacademy.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7569563&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/02-0223338",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mrs Julia Mitchell",
                "contact_email": "[email protected]",
                "contact_phone": "(603) 437-5200 x1102",
                "contact_title": "Director of Communications",
                "number_of_employees": "654",
                "ruling_year": 1941
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "19 N Main St",
                "address_line_2": "",
                "city": "Derry",
                "state": "NH",
                "zip": "03038",
                "msa": "NH - Lawrence-Haverhill, MA-NH",
                "county": "Rockingham, NH",
                "latitude": 42.8944,
                "longitude": -71.3136
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 52612732.0,
                    "total_expenses": 51483246.0,
                    "total_assets": 88400593.0
                },
                "bmf_gross_receipts": 55223927.0,
                "bmf_assets": 88400593.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-02-22T13:45:35.0000000",
                "profile_last_modified": "2022-02-22T13:45:35.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "2022-05-31T21:00:16.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6823950",
                "ein": "04-2296967",
                "organization_name": "Scholarship America, Inc.",
                "also_known_as": "Scholarship America National Headquarters",
                "mission": "Our mission is to be the most trusted scholarship and student success organization offering impactful solutions with students always at the forefront. Our vision is to create an America where every student’s educational dream can come true.",
                "website_url": "https://scholarshipamerica.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7641706&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/04-2296967",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Andrea Smith",
                "contact_email": "[email protected]",
                "contact_phone": "(800) 537-4180",
                "contact_title": "Vice President, Marketing & Development",
                "number_of_employees": "253",
                "ruling_year": 1962
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": true,
                    "subordinate": false,
                    "independent": false,
                    "headquarters": true
                }
            },
            "geography": {
                "address_line_1": "7900 International Dr Ste 500",
                "address_line_2": "",
                "city": "Minneapolis",
                "state": "MN",
                "zip": "55425",
                "msa": "MN - Minneapolis-St. Paul, MN-WI",
                "county": "Hennepin, MN",
                "latitude": 44.98,
                "longitude": -93.2638
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB080000",
                        "subject_code_description": "Student services"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B82",
                        "ntee_code_description": "Scholarships, Student Financial Aid, Awards"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 196558508.0,
                    "total_expenses": 201098373.0,
                    "total_assets": 150354223.0
                },
                "bmf_gross_receipts": 294460325.0,
                "bmf_assets": 171886443.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-03-14T11:11:12.0000000",
                "profile_last_modified": "2022-03-14T11:15:38.0000000",
                "dei_last_modified": "2022-03-14T11:11:00.0000000",
                "financials_last_modified": "2022-05-30T09:00:06.0000000",
                "last_modified": "2022-10-14T11:14:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6864040",
                "ein": "06-0646786",
                "organization_name": "MISS PORTERS SCHOOL INC",
                "also_known_as": "",
                "mission": "Miss Porter's School educates young women to become informed, bold, resourceful, and ethical global citizens. We expect our graduates to shape a changing world.",
                "website_url": "www.porters.org",
                "logo_url": "",
                "profile_level": "Silver",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/06-0646786",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Christine Pina",
                "contact_email": "[email protected]",
                "contact_phone": "(860) 409-3620",
                "contact_title": "Chief Advancement Officer",
                "number_of_employees": "243",
                "ruling_year": 1943
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "60 Main St",
                "address_line_2": "",
                "city": "Farmington",
                "state": "CT",
                "zip": "06032",
                "msa": "CT - Hartford",
                "county": "Hartford, CT",
                "latitude": 41.7224,
                "longitude": -72.8289
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PC040104",
                        "population_served_description": "Adolescent girls"
                    },
                    {
                        "population_served_code": "PC040100",
                        "population_served_description": "Girls"
                    },
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 36123877.0,
                    "total_expenses": 31906926.0,
                    "total_assets": 239110560.0
                },
                "bmf_gross_receipts": 85128542.0,
                "bmf_assets": 239110560.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-08-20T09:21:35.0000000",
                "profile_last_modified": "2021-08-20T09:21:35.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "2022-06-27T09:00:26.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7701043",
                "ein": "46-0469787",
                "organization_name": "Diane and Bruce Halle Foundation",
                "also_known_as": "",
                "mission": "OUR MISSION is to strengthen the daily opportunities and lifelong outcomes for the people and communities of the State of Arizona.",
                "website_url": "https://dianeandbrucehallefoundation.org/",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/46-0469787",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2002
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "20225 N Scottsdale Rd",
                "address_line_2": "",
                "city": "Scottsdale",
                "state": "AZ",
                "zip": "85255",
                "msa": "AZ - Phoenix-Mesa",
                "county": "Maricopa, AZ",
                "latitude": 33.6852,
                "longitude": -111.872
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS090600",
                        "subject_code_description": "Women's services"
                    },
                    {
                        "subject_code": "SS090500",
                        "subject_code_description": "Senior services"
                    },
                    {
                        "subject_code": "SS090400",
                        "subject_code_description": "Independent living for people with disabilities"
                    },
                    {
                        "subject_code": "SS090200",
                        "subject_code_description": "Homeless services"
                    },
                    {
                        "subject_code": "SS090000",
                        "subject_code_description": "Special population support"
                    },
                    {
                        "subject_code": "SS080000",
                        "subject_code_description": "Job services"
                    },
                    {
                        "subject_code": "SS070400",
                        "subject_code_description": "Homeless shelters"
                    },
                    {
                        "subject_code": "SS070102",
                        "subject_code_description": "Housing for the homeless"
                    },
                    {
                        "subject_code": "SS070101",
                        "subject_code_description": "Domestic violence shelters"
                    },
                    {
                        "subject_code": "SS070100",
                        "subject_code_description": "Supportive housing"
                    },
                    {
                        "subject_code": "SS070000",
                        "subject_code_description": "Shelter and residential care"
                    },
                    {
                        "subject_code": "SS060602",
                        "subject_code_description": "Aging out of foster care"
                    },
                    {
                        "subject_code": "SS060600",
                        "subject_code_description": "Transition planning"
                    },
                    {
                        "subject_code": "SS060000",
                        "subject_code_description": "Personal services"
                    },
                    {
                        "subject_code": "SS050900",
                        "subject_code_description": "Religion for youth"
                    },
                    {
                        "subject_code": "SS050800",
                        "subject_code_description": "Community service for youth"
                    },
                    {
                        "subject_code": "SS050600",
                        "subject_code_description": "Economics for youth"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS040800",
                        "subject_code_description": "Single parent support"
                    },
                    {
                        "subject_code": "SS040700",
                        "subject_code_description": "Parent education"
                    },
                    {
                        "subject_code": "SS040600",
                        "subject_code_description": "In-home aid and personal assistance"
                    },
                    {
                        "subject_code": "SS040400",
                        "subject_code_description": "Family counseling"
                    },
                    {
                        "subject_code": "SS040300",
                        "subject_code_description": "Child welfare"
                    },
                    {
                        "subject_code": "SS040200",
                        "subject_code_description": "Adolescent parenting"
                    },
                    {
                        "subject_code": "SS040100",
                        "subject_code_description": "Adult day care"
                    },
                    {
                        "subject_code": "SS040000",
                        "subject_code_description": "Family services"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SP030200",
                        "subject_code_description": "Catholicism"
                    },
                    {
                        "subject_code": "SP030000",
                        "subject_code_description": "Christianity"
                    },
                    {
                        "subject_code": "SP000000",
                        "subject_code_description": "Religion"
                    },
                    {
                        "subject_code": "SE130603",
                        "subject_code_description": "Obesity"
                    },
                    {
                        "subject_code": "SE130602",
                        "subject_code_description": "Nutrition"
                    },
                    {
                        "subject_code": "SE130601",
                        "subject_code_description": "Exercise"
                    },
                    {
                        "subject_code": "SE130600",
                        "subject_code_description": "Physical fitness"
                    },
                    {
                        "subject_code": "SE130200",
                        "subject_code_description": "Environmental health"
                    },
                    {
                        "subject_code": "SE130100",
                        "subject_code_description": "Communicable disease control"
                    },
                    {
                        "subject_code": "SE130000",
                        "subject_code_description": "Public health"
                    },
                    {
                        "subject_code": "SE120700",
                        "subject_code_description": "Mental health counseling"
                    },
                    {
                        "subject_code": "SE120500",
                        "subject_code_description": "Addiction services"
                    },
                    {
                        "subject_code": "SE120200",
                        "subject_code_description": "Community mental health care"
                    },
                    {
                        "subject_code": "SE120000",
                        "subject_code_description": "Mental health care"
                    },
                    {
                        "subject_code": "SE070400",
                        "subject_code_description": "Maternal and perinatal health"
                    },
                    {
                        "subject_code": "SE070000",
                        "subject_code_description": "Reproductive health care"
                    },
                    {
                        "subject_code": "SE050600",
                        "subject_code_description": "School-based health care"
                    },
                    {
                        "subject_code": "SE050200",
                        "subject_code_description": "Dental care"
                    },
                    {
                        "subject_code": "SE050000",
                        "subject_code_description": "Out-patient medical care"
                    },
                    {
                        "subject_code": "SE010000",
                        "subject_code_description": "Health care quality"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    },
                    {
                        "subject_code": "SB100000",
                        "subject_code_description": "Early childhood education"
                    },
                    {
                        "subject_code": "SB091100",
                        "subject_code_description": "Reading promotion"
                    },
                    {
                        "subject_code": "SB090500",
                        "subject_code_description": "Student retention"
                    },
                    {
                        "subject_code": "SB090300",
                        "subject_code_description": "Computer literacy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB060600",
                        "subject_code_description": "Nursing education"
                    },
                    {
                        "subject_code": "SB060000",
                        "subject_code_description": "Graduate and professional education"
                    },
                    {
                        "subject_code": "SB031100",
                        "subject_code_description": "Multicultural education"
                    },
                    {
                        "subject_code": "SB031000",
                        "subject_code_description": "STEM education"
                    },
                    {
                        "subject_code": "SB030800",
                        "subject_code_description": "Special needs education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    },
                    {
                        "subject_code": "SA070200",
                        "subject_code_description": "Children's museums"
                    },
                    {
                        "subject_code": "SA070100",
                        "subject_code_description": "Art museums"
                    },
                    {
                        "subject_code": "SA070000",
                        "subject_code_description": "Museums"
                    },
                    {
                        "subject_code": "SA060101",
                        "subject_code_description": "Ballet"
                    },
                    {
                        "subject_code": "SA060100",
                        "subject_code_description": "Dance"
                    },
                    {
                        "subject_code": "SA060000",
                        "subject_code_description": "Performing arts"
                    },
                    {
                        "subject_code": "SA050200",
                        "subject_code_description": "Art conservation"
                    },
                    {
                        "subject_code": "SA050000",
                        "subject_code_description": "Visual arts"
                    },
                    {
                        "subject_code": "SA000000",
                        "subject_code_description": "Arts and culture"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "T22",
                        "ntee_code_description": "Private Independent Foundations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Private Non-Operating Foundation"
                },
                "foundation_code": {
                    "foundation_code": "04",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "PF",
                    "fiscal_year": 2020,
                    "total_revenue": 15113571.0,
                    "total_expenses": 15190353.0,
                    "total_assets": 79155.0
                },
                "bmf_gross_receipts": 31307586.0,
                "bmf_assets": 130264.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-04-05T10:54:21.0000000",
                "profile_last_modified": "2022-04-05T10:54:21.0000000",
                "dei_last_modified": "2022-04-05T07:53:58.0000000",
                "financials_last_modified": "2021-09-14T03:00:24.0000000",
                "last_modified": "2022-09-13T16:11:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8268022",
                "ein": "85-0297355",
                "organization_name": "ARMAND HAMMER UNITED WORLD COLLEGE OF THE AMERICAN WEST",
                "also_known_as": "UWC-USA",
                "mission": "UWC makes  education a force to unite people, nations, and cultures for peace and a  sustainable future.The school has 234 students from 76 different countries.",
                "website_url": "http://www.uwc-usa.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8292382&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-0297355",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mark Hodde",
                "contact_email": "[email protected]",
                "contact_phone": "(505) 454-4214",
                "contact_title": "Chief Advancement Officer",
                "number_of_employees": "210",
                "ruling_year": 1982
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 248",
                "address_line_2": "",
                "city": "Montezuma",
                "state": "NM",
                "zip": "87731",
                "msa": "",
                "county": "San Miguel, NM",
                "latitude": 35.6523,
                "longitude": -105.2764
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB050200",
                        "subject_code_description": "Undergraduate education"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 40177663.0,
                    "total_expenses": 29536968.0,
                    "total_assets": 284679959.0
                },
                "bmf_gross_receipts": 51227760.0,
                "bmf_assets": 416233036.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-03T15:58:21.0000000",
                "profile_last_modified": "2022-11-03T15:58:21.0000000",
                "dei_last_modified": "2022-11-03T00:00:00.0000000",
                "financials_last_modified": "2021-06-16T19:00:08.0000000",
                "last_modified": "2022-11-03T15:58:21.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6822725",
                "ein": "04-2105855",
                "organization_name": "WORCESTER ACADEMY",
                "also_known_as": "",
                "mission": "Founded in 1834, Worcester Academy is a day boarding school for grades 6-12 and post-graduates.  The Academy mission is to instill in students the desire to learn throughout life, to engage passionately with the world around them, and to be honorable persons of strong and resourceful character. Worcester Academy's Core Values—Honor, Respect, Community, Personal Growth, and Challenge—are essential to its mission and are a testimony to its beliefs and commitments. The Academy motto is \"Achieve the Honorable.\"",
                "website_url": "www.worcesteracademy.org",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/04-2105855",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Neil Isakson",
                "contact_email": "[email protected]",
                "contact_phone": "(508) 754-5302 x135",
                "contact_title": "",
                "number_of_employees": "285",
                "ruling_year": 1935
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "81 Providence St",
                "address_line_2": "",
                "city": "Worcester",
                "state": "MA",
                "zip": "01604",
                "msa": "MA - Worcester",
                "county": "Worcester, MA",
                "latitude": 42.2534,
                "longitude": -71.7927
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 31140946.0,
                    "total_expenses": 31611678.0,
                    "total_assets": 109627128.0
                },
                "bmf_gross_receipts": 39655658.0,
                "bmf_assets": 121807023.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-05-03T09:22:53.0000000",
                "profile_last_modified": "2022-05-03T09:22:53.0000000",
                "dei_last_modified": "2022-05-02T11:57:46.0000000",
                "financials_last_modified": "2021-06-13T19:00:08.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8435900",
                "ein": "94-3007979",
                "organization_name": "Marin Community Foundation",
                "also_known_as": "",
                "mission": "The Marin Community Foundation was founded with one simple aspiration: to make a difference in the lives of others through thoughtful, effective philanthropy. The foundation's mission is to encourage and apply philanthropic contributions to help improve the human condition, embrace diversity, promote a humane and democratic society, and enhance the community's quality of life, now and for future generations.",
                "website_url": "http://www.marincf.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7926481&approved=True",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/94-3007979",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Vikki Garrod",
                "contact_email": "[email protected]",
                "contact_phone": "(415) 464-2500",
                "contact_title": "Chief Communications Officer",
                "number_of_employees": "69",
                "ruling_year": 1986
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "5 Hamilton Landing Ste 200",
                "address_line_2": "",
                "city": "Novato",
                "state": "CA",
                "zip": "94949",
                "msa": "CA - San Francisco-Oakland",
                "county": "Marin, CA",
                "latitude": 38.0628,
                "longitude": -122.5394
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS070400",
                        "subject_code_description": "Homeless shelters"
                    },
                    {
                        "subject_code": "SS070102",
                        "subject_code_description": "Housing for the homeless"
                    },
                    {
                        "subject_code": "SS070100",
                        "subject_code_description": "Supportive housing"
                    },
                    {
                        "subject_code": "SS070000",
                        "subject_code_description": "Shelter and residential care"
                    },
                    {
                        "subject_code": "SS040302",
                        "subject_code_description": "Child care"
                    },
                    {
                        "subject_code": "SS040300",
                        "subject_code_description": "Child welfare"
                    },
                    {
                        "subject_code": "SS040000",
                        "subject_code_description": "Family services"
                    },
                    {
                        "subject_code": "SS030601",
                        "subject_code_description": "Food banks"
                    },
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SN040300",
                        "subject_code_description": "Public housing"
                    },
                    {
                        "subject_code": "SN040000",
                        "subject_code_description": "Housing development"
                    },
                    {
                        "subject_code": "SN020304",
                        "subject_code_description": "Job creation and workforce development"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SJ060200",
                        "subject_code_description": "Disaster preparedness"
                    },
                    {
                        "subject_code": "SJ060000",
                        "subject_code_description": "Disasters and emergency management"
                    },
                    {
                        "subject_code": "SJ040600",
                        "subject_code_description": "Legal aid"
                    },
                    {
                        "subject_code": "SJ040400",
                        "subject_code_description": "Immigration law"
                    },
                    {
                        "subject_code": "SJ040000",
                        "subject_code_description": "Legal services"
                    },
                    {
                        "subject_code": "SJ000000",
                        "subject_code_description": "Public safety"
                    },
                    {
                        "subject_code": "SE030700",
                        "subject_code_description": "Patient-centered care"
                    },
                    {
                        "subject_code": "SE030400",
                        "subject_code_description": "Health care management"
                    },
                    {
                        "subject_code": "SE030000",
                        "subject_code_description": "Health care administration and financing"
                    },
                    {
                        "subject_code": "SE020000",
                        "subject_code_description": "Health care access"
                    },
                    {
                        "subject_code": "SE010000",
                        "subject_code_description": "Health care quality"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    },
                    {
                        "subject_code": "SC030601",
                        "subject_code_description": "Energy efficiency"
                    },
                    {
                        "subject_code": "SC030600",
                        "subject_code_description": "Energy resources"
                    },
                    {
                        "subject_code": "SC030406",
                        "subject_code_description": "Wetlands"
                    },
                    {
                        "subject_code": "SC030403",
                        "subject_code_description": "Oceans and coastal waters"
                    },
                    {
                        "subject_code": "SC030400",
                        "subject_code_description": "Water resources"
                    },
                    {
                        "subject_code": "SC030000",
                        "subject_code_description": "Natural resources"
                    },
                    {
                        "subject_code": "SC020000",
                        "subject_code_description": "Climate change"
                    },
                    {
                        "subject_code": "SC000000",
                        "subject_code_description": "Environment"
                    },
                    {
                        "subject_code": "SB100000",
                        "subject_code_description": "Early childhood education"
                    },
                    {
                        "subject_code": "SB091000",
                        "subject_code_description": "Parent-teacher involvement"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090100",
                        "subject_code_description": "Out-of-school learning"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070300",
                        "subject_code_description": "ESL and second language acquisition"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    },
                    {
                        "subject_code": "SA010500",
                        "subject_code_description": "Arts education"
                    },
                    {
                        "subject_code": "SA010000",
                        "subject_code_description": "Arts services"
                    },
                    {
                        "subject_code": "SA000000",
                        "subject_code_description": "Arts and culture"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PH010000",
                        "population_served_description": "People with disabilities"
                    },
                    {
                        "population_served_code": "PH000000",
                        "population_served_description": "Health"
                    },
                    {
                        "population_served_code": "PG030300",
                        "population_served_description": "Extremely poor people"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030100",
                        "population_served_description": "Homeless people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020200",
                        "population_served_description": "Older adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010100",
                        "population_served_description": "Infants and toddlers"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "T31",
                        "ntee_code_description": "Community Foundations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 235366683.0,
                    "total_expenses": 132913110.0,
                    "total_assets": 755211408.0
                },
                "bmf_gross_receipts": 925431661.0,
                "bmf_assets": 1422633214.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-07-05T19:36:19.0000000",
                "profile_last_modified": "2022-07-05T19:36:19.0000000",
                "dei_last_modified": "2022-07-05T00:00:00.0000000",
                "financials_last_modified": "2021-06-17T13:00:18.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7666928",
                "ein": "43-1973126",
                "organization_name": "GREAT HEARTS AMERICA-TEXAS",
                "also_known_as": "Great Hearts Texas",
                "mission": "Great Hearts educates young people for the lifelong pursuit of truth, goodness and beauty through a classical liberal arts education. We believe that the highest goal of education is to become good, intellectually and morally. Our K-12 public charter schools provide a transformative educational experience in a rigorous, well-rounded program in a vibrant school culture.  Great Hearts students are prepared for success in college, leadership in any field they choose and a life filled with purpose.",
                "website_url": "http://www.greatheartstx.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7616473&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/43-1973126",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Susan Athene",
                "contact_email": "[email protected]",
                "contact_phone": "(210) 888-9475",
                "contact_title": "Grants Manager",
                "number_of_employees": "575",
                "ruling_year": 2003
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "12500 San Pedro Ave Ste 500",
                "address_line_2": "",
                "city": "San Antonio",
                "state": "TX",
                "zip": "78216",
                "msa": "TX - San Antonio",
                "county": "Bexar, TX",
                "latitude": 29.5551,
                "longitude": -98.4853
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030600",
                        "subject_code_description": "Charter school education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B90",
                        "ntee_code_description": "Educational Services and Schools - Other"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 55624288.0,
                    "total_expenses": 48335472.0,
                    "total_assets": 162207897.0
                },
                "bmf_gross_receipts": 73584130.0,
                "bmf_assets": 263562120.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-03-07T18:21:35.0000000",
                "profile_last_modified": "2022-03-07T18:21:35.0000000",
                "dei_last_modified": "2022-03-07T16:14:52.0000000",
                "financials_last_modified": "2021-09-10T11:00:10.0000000",
                "last_modified": "2022-09-13T16:11:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8139850",
                "ein": "74-3033931",
                "organization_name": "Edkey, Inc.",
                "also_known_as": "Sequoia Schools",
                "mission": "Our services promote the improved quality of individual and family life.Edkey, Inc. is a non-profit organization that provides high quality management and educational services to a variety of institutions, empowering fulfillment of their individual missions.",
                "website_url": "https://www.edkey.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8182219&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/74-3033931",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Jerry Lewis",
                "contact_email": "[email protected]",
                "contact_phone": "(480) 861-6931",
                "contact_title": "",
                "number_of_employees": "860",
                "ruling_year": 2003
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1460 S Horne",
                "address_line_2": "",
                "city": "Mesa",
                "state": "AZ",
                "zip": "85204",
                "msa": "AZ - Phoenix-Mesa",
                "county": "Maricopa, AZ",
                "latitude": 33.3882,
                "longitude": -111.8142
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030800",
                        "subject_code_description": "Special needs education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PH010300",
                        "population_served_description": "People with hearing impairments"
                    },
                    {
                        "population_served_code": "PH010000",
                        "population_served_description": "People with disabilities"
                    },
                    {
                        "population_served_code": "PH000000",
                        "population_served_description": "Health"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B24",
                        "ntee_code_description": "Primary/Elementary Schools"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 53391493.0,
                    "total_expenses": 53052605.0,
                    "total_assets": 102870038.0
                },
                "bmf_gross_receipts": 83812049.0,
                "bmf_assets": 135819543.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-09-06T20:54:05.0000000",
                "profile_last_modified": "2022-10-04T16:54:18.0000000",
                "dei_last_modified": "2022-10-04T00:00:00.0000000",
                "financials_last_modified": "2021-06-17T11:00:09.0000000",
                "last_modified": "2022-11-15T12:27:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8821043",
                "ein": "26-1607268",
                "organization_name": "KIPP SoCal Public Schools",
                "also_known_as": "KIPP SoCal",
                "mission": "Together with families and communities, we create joyful, academically excellent schools that prepare students with the skills and confidence to pursue the paths they choose — college, career, and beyond — so they can lead fulfilling lives and create a more just world.",
                "website_url": "https://www.kippsocal.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6989447&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/26-1607268",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Joanna Belcher",
                "contact_email": "[email protected]",
                "contact_phone": "(323) 430- x3055",
                "contact_title": "Chief External Impact Officer",
                "number_of_employees": "1259",
                "ruling_year": 2009
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3601 E 1st St",
                "address_line_2": "",
                "city": "Los Angeles",
                "state": "CA",
                "zip": "90063",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 34.036,
                "longitude": -118.1892
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE050000",
                        "population_served_description": "People of Latin American descent"
                    },
                    {
                        "population_served_code": "PE030000",
                        "population_served_description": "People of African descent"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 140910132.0,
                    "total_expenses": 132245208.0,
                    "total_assets": 124148972.0
                },
                "bmf_gross_receipts": 177668807.0,
                "bmf_assets": 124148972.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-07-26T19:00:17.0000000",
                "profile_last_modified": "2022-02-11T11:31:18.0000000",
                "dei_last_modified": "2021-07-26T00:00:00.0000000",
                "financials_last_modified": "2022-06-27T17:00:24.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6797338",
                "ein": "02-0223634",
                "organization_name": "New Hampton School",
                "also_known_as": "",
                "mission": "New Hampton School cultivates lifelong learners who will serve as active global citizens.Experiencing, exploring, and appreciating world cultures, traditions, histories, languages, and religionsConnecting to relevant economic, social, and political issues to gain a sense of international-mindednessEngaging with real world issues to gain optimism, compassion, and empathy for individuals and communities that differ from those we knowUsing analytical thinking and social skills to be creative and to communicate effectively through academics, athletics, artistic expression, and serviceIncreasing awareness of our relationship and responsibility to global sustainabilityWe enhance the potential of students and promote academic success and development of caring community members.",
                "website_url": "www.newhampton.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8194999&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/02-0223634",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mrs. Sarah DeBenedictis",
                "contact_email": "[email protected]",
                "contact_phone": "(603) 677-3400",
                "contact_title": "Director of Advancement",
                "number_of_employees": "247",
                "ruling_year": 1950
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "70 Main St",
                "address_line_2": "",
                "city": "New Hampton",
                "state": "NH",
                "zip": "03256",
                "msa": "",
                "county": "Belknap, NH",
                "latitude": 43.6055,
                "longitude": -71.6533
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 22617554.0,
                    "total_expenses": 22789431.0,
                    "total_assets": 94331924.0
                },
                "bmf_gross_receipts": 33685408.0,
                "bmf_assets": 103820113.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-10T09:35:58.0000000",
                "profile_last_modified": "2022-10-10T09:54:54.0000000",
                "dei_last_modified": "2022-10-10T00:00:00.0000000",
                "financials_last_modified": "2021-06-12T13:00:08.0000000",
                "last_modified": "2022-10-10T09:54:54.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8581836",
                "ein": "92-0184898",
                "organization_name": "Palisades Charter High School",
                "also_known_as": "",
                "mission": "PALISADES CHARTER HIGH SCHOOL WILL EMPOWER OUR DIVERSE STUDENT POPULATION TO MAKE POSITIVE CONTRIBUTIONS TO THE GLOBAL COMMUNITY BY DEDICATING OUR RESOURCES TO ENSURE EDUCATIONAL EXCELLENCE, CIVIC RESPONSIBILTY, AND PERSONAL GROWTH.",
                "website_url": "www.palihigh.org",
                "logo_url": "",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/92-0184898",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Michael Rawson",
                "contact_email": "[email protected]",
                "contact_phone": "(310) 230-7272",
                "contact_title": "Director of Development",
                "number_of_employees": "388",
                "ruling_year": 2007
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "15777 Bowdoin St",
                "address_line_2": "",
                "city": "Pacific Palisades",
                "state": "CA",
                "zip": "90272",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 34.0481,
                "longitude": -118.5265
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030600",
                        "subject_code_description": "Charter school education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PE070000",
                        "population_served_description": "Multiracial people"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 36717719.0,
                    "total_expenses": 36898757.0,
                    "total_assets": 23999950.0
                },
                "bmf_gross_receipts": 43719595.0,
                "bmf_assets": 26412295.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-06-01T17:13:27.0000000",
                "profile_last_modified": "2022-06-01T17:13:27.0000000",
                "dei_last_modified": "2022-06-01T14:13:06.0000000",
                "financials_last_modified": "2021-06-16T05:00:09.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6906750",
                "ein": "13-1935349",
                "organization_name": "International College-Beirut Lebanon",
                "also_known_as": "International College",
                "mission": "The Mission of IC is to empower learners to take initiative, think critically, and serve as role models in a global society.  The curriculum aims for excellence at all levels and embraces the education of the whole person.  Graduates of IC will have developed self-confidence, problem-solving, and decision-making abilities as well as self-discipline, social and environmental responsibility, and an awareness of and respect for the connected nature of our global community.",
                "website_url": "https://www.ic.edu.lb/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6900844&approved=True",
                "profile_level": "Silver",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/13-1935349",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Jennifer Turner",
                "contact_email": "[email protected]",
                "contact_phone": "(212) 529-3005 x3005",
                "contact_title": "Development Associate",
                "number_of_employees": "52",
                "ruling_year": 1934
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "305 E 47th St Fl 10",
                "address_line_2": "",
                "city": "New York City",
                "state": "NY",
                "zip": "10017",
                "msa": "NY - New York, NY-NJ",
                "county": "New York, NY",
                "latitude": 40.753,
                "longitude": -73.9698
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB100000",
                        "subject_code_description": "Early childhood education"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 51574911.0,
                    "total_expenses": 46572169.0,
                    "total_assets": 209567353.0
                },
                "bmf_gross_receipts": 71344706.0,
                "bmf_assets": 232638359.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-06-21T15:59:33.0000000",
                "profile_last_modified": "2021-06-21T15:59:33.0000000",
                "dei_last_modified": "2020-04-01T14:49:52.0000000",
                "financials_last_modified": "2021-06-12T07:00:14.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8415696",
                "ein": "94-3187806",
                "organization_name": "Eastside College Preparatory School, Inc.",
                "also_known_as": "Eastside College Preparatory School",
                "mission": "At Eastside College Preparatory School we are committed to opening new doors for students historically underrepresented in higher education. Our challenging and engaging curriculum enables students to discover their intellectual strengths, sharpen their academic skills, and embrace new opportunities in a culture of learning that supports the potential of every student to enter and succeed in a four-year college and beyond. Eastside students who are the first in their families to go to college create a ripple effect, changing their own lives, the lives of their families, and the life of their community.",
                "website_url": "www.eastside.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8293379&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/94-3187806",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Ellen Lehman",
                "contact_email": "[email protected]",
                "contact_phone": "(650) 688-0850 x144",
                "contact_title": "Director of Development",
                "number_of_employees": "103",
                "ruling_year": 1999
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1041 Myrtle St",
                "address_line_2": "",
                "city": "East Palo Alto",
                "state": "CA",
                "zip": "94303",
                "msa": "CA - San Francisco-Oakland",
                "county": "San Mateo, CA",
                "latitude": 37.4633,
                "longitude": -122.1329
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 13237474.0,
                    "total_expenses": 9760967.0,
                    "total_assets": 149041945.0
                },
                "bmf_gross_receipts": 52640579.0,
                "bmf_assets": 191917516.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-03T18:24:11.0000000",
                "profile_last_modified": "2022-11-03T18:24:11.0000000",
                "dei_last_modified": "2022-11-03T00:00:00.0000000",
                "financials_last_modified": "2021-06-18T21:00:08.0000000",
                "last_modified": "2022-11-03T18:24:11.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7376479",
                "ein": "33-0542733",
                "organization_name": "The High Desert Partnership In Academic Excellence Foundation, Inc.",
                "also_known_as": "Lewis Center for Educational Research",
                "mission": "The mission of the Lewis Center for Educational Research is to ensure our schools and programs prepare students for success in a global society through data driven, innovative, and research proven practices in a safe and inclusive culture.",
                "website_url": "www.lewiscenter.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6653876&approved=True",
                "profile_level": "Gold",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/33-0542733",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Teresa Dowd",
                "contact_email": "[email protected]",
                "contact_phone": "(760) 946-5414 x201",
                "contact_title": "Executive Assistant",
                "number_of_employees": "351",
                "ruling_year": 1993
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "Lewis Center For Educational Research 17500 Mana Rd",
                "address_line_2": "",
                "city": "Apple Valley",
                "state": "CA",
                "zip": "92307",
                "msa": "CA - Riverside-San Bernardino-Ontario",
                "county": "San Bernardino, CA",
                "latitude": 34.5362,
                "longitude": -117.1963
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030600",
                        "subject_code_description": "Charter school education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB020000",
                        "subject_code_description": "Educational management"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B24",
                        "ntee_code_description": "Primary/Elementary Schools"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 31240490.0,
                    "total_expenses": 27154880.0,
                    "total_assets": 28124114.0
                },
                "bmf_gross_receipts": 39911807.0,
                "bmf_assets": 122407472.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-03-24T14:49:24.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-03-24T11:49:03.0000000",
                "financials_last_modified": "2021-06-13T15:00:14.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7155970",
                "ein": "23-7102832",
                "organization_name": "Institute for Better Education",
                "also_known_as": "IBE",
                "mission": "The Institute for Better Education (IBE) is a 501(c)(3) nonprofit and nonpartisan organization. We are committed to removing any financial obstacles that stand in a family’s way of providing K-12 education for their children and their unique needs. IBE accomplishes this through the Arizona private school tax credit program. We believe parents are the best resource a child has when determining which school will be the perfect fit for their child. Parents have been able to turn to the Institute for Better Education since 1998 if the right school to fit their child’s needs is not within their financial reach. IBE is honored to play a part in making a real difference in the lives of Arizona children.",
                "website_url": "ibescholarships.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8215881&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/23-7102832",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mrs Jodi Schulz",
                "contact_email": "[email protected]",
                "contact_phone": "(520) 512-5438",
                "contact_title": "Business Office Manager",
                "number_of_employees": "9",
                "ruling_year": 1971
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "921 N Swan Rd",
                "address_line_2": "",
                "city": "Tucson",
                "state": "AZ",
                "zip": "85711",
                "msa": "AZ - Tucson",
                "county": "Pima, AZ",
                "latitude": 32.234,
                "longitude": -110.8926
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B82",
                        "ntee_code_description": "Scholarships, Student Financial Aid, Awards"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 22913031.0,
                    "total_expenses": 21537937.0,
                    "total_assets": 26803865.0
                },
                "bmf_gross_receipts": 28983882.0,
                "bmf_assets": 33008128.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-14T14:05:43.0000000",
                "profile_last_modified": "2022-10-14T14:33:59.0000000",
                "dei_last_modified": "2022-10-05T00:00:00.0000000",
                "financials_last_modified": "2021-06-12T11:00:08.0000000",
                "last_modified": "2022-10-14T14:33:59.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9560762",
                "ein": "81-3380647",
                "organization_name": "Strivetogether Inc",
                "also_known_as": "StriveTogether",
                "mission": "We partner with communities to ensure every child has every chance to succeed because race, ethnicity, poverty and circumstance should not determine opportunity or outcome.",
                "website_url": "strivetogether.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8289545&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/81-3380647",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "49",
                "ruling_year": 2016
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "125 E 9th St Fl 2",
                "address_line_2": "",
                "city": "Cincinnati",
                "state": "OH",
                "zip": "45202",
                "msa": "OH - Cincinnati, OH-KY-IN",
                "county": "Hamilton, OH",
                "latitude": 39.1057,
                "longitude": -84.5122
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS040300",
                        "subject_code_description": "Child welfare"
                    },
                    {
                        "subject_code": "SS040000",
                        "subject_code_description": "Family services"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SK010000",
                        "subject_code_description": "Public policy"
                    },
                    {
                        "subject_code": "SK000000",
                        "subject_code_description": "Public affairs"
                    },
                    {
                        "subject_code": "SB100000",
                        "subject_code_description": "Early childhood education"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "T20",
                        "ntee_code_description": "Private Grantmaking Foundations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 30982246.0,
                    "total_expenses": 28643603.0,
                    "total_assets": 8381463.0
                },
                "bmf_gross_receipts": 28425480.0,
                "bmf_assets": 15484641.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-03T10:59:06.0000000",
                "profile_last_modified": "2022-11-03T10:59:06.0000000",
                "dei_last_modified": "2021-10-19T13:13:45.0000000",
                "financials_last_modified": "2021-06-15T07:00:09.0000000",
                "last_modified": "2022-11-03T10:59:06.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8422193",
                "ein": "94-3279613",
                "organization_name": "College Track",
                "also_known_as": "",
                "mission": "Mission: Equip students confronting systemic barriers to earn a bachelor’s degree, in pursuit of a life of opportunity, choice, and power.        Opportunity - the potential for personal and professional growth that provides access to future possibilities        Choice - the freedom to pursue one's passions by making a choice among multiple opportunities        Power - claiming your seat at the table and knowing you belong thereAt  College Track,  we  firmly  believe  that  a  bachelor’s  degree remains  the  best  predictor  of  professional  mobility,  civic engagement, lifelong wellness, and self-agency.  Today,  we  serve  more  than  3,800  high  school  and  college students,  as  well  as  900+  alumni.",
                "website_url": "www.collegetrack.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7793303&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/94-3279613",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms Zoe Melczer",
                "contact_email": "[email protected]",
                "contact_phone": "(510) 913 x9080",
                "contact_title": "Vice President of Development",
                "number_of_employees": "372",
                "ruling_year": 1997
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "112 Linden St",
                "address_line_2": "",
                "city": "Oakland",
                "state": "CA",
                "zip": "94607",
                "msa": "CA - Oakland",
                "county": "Alameda, CA",
                "latitude": 37.7997,
                "longitude": -122.2874
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG010000",
                        "population_served_description": "Immigrants and migrants"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B90",
                        "ntee_code_description": "Educational Services and Schools - Other"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 30456091.0,
                    "total_expenses": 27983549.0,
                    "total_assets": 58821566.0
                },
                "bmf_gross_receipts": 42748288.0,
                "bmf_assets": 72322502.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-05-12T20:01:38.0000000",
                "profile_last_modified": "2022-05-12T20:01:37.0000000",
                "dei_last_modified": "2022-04-29T13:28:28.0000000",
                "financials_last_modified": "2021-06-16T07:00:15.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        }
    ]
}

In the example above, OR operator logic is applied within the same filter. This example will return organizations who match college preparation OR secondary education

{
    "filters": {
      "organization": { 
        "subject_codes":["SB090200,SB030400"], /*college preparation or secondary education*/
        "population_served_codes":["PA020100"] /*young adults*/
         }
    }
}
{
    "code": 200,
    "message": "Request was processed successfully!",
    "took": 164,
    "time": "2022-12-06 22:52:59Z",
    "results_count": 184,
    "page_count": 8,
    "errors": [],
    "hits": [
        {
            "organization": {
                "organization_id": "8268022",
                "ein": "85-0297355",
                "organization_name": "ARMAND HAMMER UNITED WORLD COLLEGE OF THE AMERICAN WEST",
                "also_known_as": "UWC-USA",
                "mission": "UWC makes  education a force to unite people, nations, and cultures for peace and a  sustainable future.The school has 234 students from 76 different countries.",
                "website_url": "http://www.uwc-usa.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8292382&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-0297355",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mark Hodde",
                "contact_email": "[email protected]",
                "contact_phone": "(505) 454-4214",
                "contact_title": "Chief Advancement Officer",
                "number_of_employees": "210",
                "ruling_year": 1982
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 248",
                "address_line_2": "",
                "city": "Montezuma",
                "state": "NM",
                "zip": "87731",
                "msa": "",
                "county": "San Miguel, NM",
                "latitude": 35.6523,
                "longitude": -105.2764
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB050200",
                        "subject_code_description": "Undergraduate education"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 40177663.0,
                    "total_expenses": 29536968.0,
                    "total_assets": 284679959.0
                },
                "bmf_gross_receipts": 51227760.0,
                "bmf_assets": 416233036.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-03T15:58:21.0000000",
                "profile_last_modified": "2022-11-03T15:58:21.0000000",
                "dei_last_modified": "2022-11-03T00:00:00.0000000",
                "financials_last_modified": "2021-06-16T19:00:08.0000000",
                "last_modified": "2022-11-03T15:58:21.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8821043",
                "ein": "26-1607268",
                "organization_name": "KIPP SoCal Public Schools",
                "also_known_as": "KIPP SoCal",
                "mission": "Together with families and communities, we create joyful, academically excellent schools that prepare students with the skills and confidence to pursue the paths they choose — college, career, and beyond — so they can lead fulfilling lives and create a more just world.",
                "website_url": "https://www.kippsocal.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6989447&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/26-1607268",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Joanna Belcher",
                "contact_email": "[email protected]",
                "contact_phone": "(323) 430- x3055",
                "contact_title": "Chief External Impact Officer",
                "number_of_employees": "1259",
                "ruling_year": 2009
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "3601 E 1st St",
                "address_line_2": "",
                "city": "Los Angeles",
                "state": "CA",
                "zip": "90063",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 34.036,
                "longitude": -118.1892
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE050000",
                        "population_served_description": "People of Latin American descent"
                    },
                    {
                        "population_served_code": "PE030000",
                        "population_served_description": "People of African descent"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2021,
                    "total_revenue": 140910132.0,
                    "total_expenses": 132245208.0,
                    "total_assets": 124148972.0
                },
                "bmf_gross_receipts": 177668807.0,
                "bmf_assets": 124148972.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-07-26T19:00:17.0000000",
                "profile_last_modified": "2022-02-11T11:31:18.0000000",
                "dei_last_modified": "2021-07-26T00:00:00.0000000",
                "financials_last_modified": "2022-06-27T17:00:24.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6822725",
                "ein": "04-2105855",
                "organization_name": "WORCESTER ACADEMY",
                "also_known_as": "",
                "mission": "Founded in 1834, Worcester Academy is a day boarding school for grades 6-12 and post-graduates.  The Academy mission is to instill in students the desire to learn throughout life, to engage passionately with the world around them, and to be honorable persons of strong and resourceful character. Worcester Academy's Core Values—Honor, Respect, Community, Personal Growth, and Challenge—are essential to its mission and are a testimony to its beliefs and commitments. The Academy motto is \"Achieve the Honorable.\"",
                "website_url": "www.worcesteracademy.org",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/04-2105855",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Neil Isakson",
                "contact_email": "[email protected]",
                "contact_phone": "(508) 754-5302 x135",
                "contact_title": "",
                "number_of_employees": "285",
                "ruling_year": 1935
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "81 Providence St",
                "address_line_2": "",
                "city": "Worcester",
                "state": "MA",
                "zip": "01604",
                "msa": "MA - Worcester",
                "county": "Worcester, MA",
                "latitude": 42.2534,
                "longitude": -71.7927
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 31140946.0,
                    "total_expenses": 31611678.0,
                    "total_assets": 109627128.0
                },
                "bmf_gross_receipts": 39655658.0,
                "bmf_assets": 121807023.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-05-03T09:22:53.0000000",
                "profile_last_modified": "2022-05-03T09:22:53.0000000",
                "dei_last_modified": "2022-05-02T11:57:46.0000000",
                "financials_last_modified": "2021-06-13T19:00:08.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8415696",
                "ein": "94-3187806",
                "organization_name": "Eastside College Preparatory School, Inc.",
                "also_known_as": "Eastside College Preparatory School",
                "mission": "At Eastside College Preparatory School we are committed to opening new doors for students historically underrepresented in higher education. Our challenging and engaging curriculum enables students to discover their intellectual strengths, sharpen their academic skills, and embrace new opportunities in a culture of learning that supports the potential of every student to enter and succeed in a four-year college and beyond. Eastside students who are the first in their families to go to college create a ripple effect, changing their own lives, the lives of their families, and the life of their community.",
                "website_url": "www.eastside.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8293379&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/94-3187806",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Ellen Lehman",
                "contact_email": "[email protected]",
                "contact_phone": "(650) 688-0850 x144",
                "contact_title": "Director of Development",
                "number_of_employees": "103",
                "ruling_year": 1999
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1041 Myrtle St",
                "address_line_2": "",
                "city": "East Palo Alto",
                "state": "CA",
                "zip": "94303",
                "msa": "CA - San Francisco-Oakland",
                "county": "San Mateo, CA",
                "latitude": 37.4633,
                "longitude": -122.1329
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 13237474.0,
                    "total_expenses": 9760967.0,
                    "total_assets": 149041945.0
                },
                "bmf_gross_receipts": 52640579.0,
                "bmf_assets": 191917516.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-03T18:24:11.0000000",
                "profile_last_modified": "2022-11-03T18:24:11.0000000",
                "dei_last_modified": "2022-11-03T00:00:00.0000000",
                "financials_last_modified": "2021-06-18T21:00:08.0000000",
                "last_modified": "2022-11-03T18:24:11.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7042600",
                "ein": "20-5010766",
                "organization_name": "KIPP Public Schools Northern California",
                "also_known_as": "KIPP Public Schools Northern California",
                "mission": "Together with families and communities, we create joyful, academically excellent schools that prepare students with the skills and confidence to pursue the paths they choose—college, career and beyond—so they can lead fulfilling lives and create a more just world.",
                "website_url": "https://kippnorcal.org/donate/",
                "logo_url": "",
                "profile_level": "Silver",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/20-5010766",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Miranda Shepherd",
                "contact_email": "[email protected]",
                "contact_phone": "(510) 917-8940",
                "contact_title": "Associate Director of Development",
                "number_of_employees": "953",
                "ruling_year": 2006
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1000 Broadway Ste 460",
                "address_line_2": "",
                "city": "Oakland",
                "state": "CA",
                "zip": "94607",
                "msa": "CA - Oakland",
                "county": "Alameda, CA",
                "latitude": 37.8065,
                "longitude": -122.2848
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030600",
                        "subject_code_description": "Charter school education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 100462974.0,
                    "total_expenses": 89250728.0,
                    "total_assets": 155644498.0
                },
                "bmf_gross_receipts": 239134413.0,
                "bmf_assets": 172487625.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2021-04-22T17:48:46.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-04-22T16:21:50.0000000",
                "financials_last_modified": "2021-06-12T19:00:08.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7663448",
                "ein": "43-1815310",
                "organization_name": "Kanakuk Ministries",
                "also_known_as": "Kanakuk Kamps, Kanakuk KampOut, Link Year, Link Academy, and AfterDark",
                "mission": "Equipping Next Generation Christian Leaders is more than our mission, it is our heartbeat. Since 1926, Kanakuk has welcomed over 500,000 Kampers and 50,000 summer staff from across the country and around the world, equipping them with leadership skills and Biblical truths to impact their schools and communities as examples of Jesus Christ.",
                "website_url": "https://kanakuk.com/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8329795&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/43-1815310",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "John Jensen",
                "contact_email": "[email protected]",
                "contact_phone": "(417) 266-3334",
                "contact_title": "Chief Business Officer",
                "number_of_employees": "2239",
                "ruling_year": 2015
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1353 Lake Shore Dr",
                "address_line_2": "",
                "city": "Branson",
                "state": "MO",
                "zip": "65616",
                "msa": "",
                "county": "Taney, MO",
                "latitude": 36.6495,
                "longitude": -93.2457
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SQ020000",
                        "subject_code_description": "Sports"
                    },
                    {
                        "subject_code": "SQ010100",
                        "subject_code_description": "Camps"
                    },
                    {
                        "subject_code": "SQ010000",
                        "subject_code_description": "Community recreation"
                    },
                    {
                        "subject_code": "SQ000000",
                        "subject_code_description": "Sports and recreation"
                    },
                    {
                        "subject_code": "SP030000",
                        "subject_code_description": "Christianity"
                    },
                    {
                        "subject_code": "SP000000",
                        "subject_code_description": "Religion"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PF010000",
                        "population_served_description": "Christians"
                    },
                    {
                        "population_served_code": "PF000000",
                        "population_served_description": "Religious groups"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "O55",
                        "ntee_code_description": "Religious Leadership, Youth Development"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "10",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 23660219.0,
                    "total_expenses": 29630779.0,
                    "total_assets": 43790256.0
                },
                "bmf_gross_receipts": 40457284.0,
                "bmf_assets": 46087576.0,
                "required_to_file_990t": true,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-14T19:02:02.0000000",
                "profile_last_modified": "2022-11-14T19:08:22.0000000",
                "dei_last_modified": "2022-11-14T00:00:00.0000000",
                "financials_last_modified": "2022-05-28T09:00:18.0000000",
                "last_modified": "2022-11-14T19:08:22.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8351295",
                "ein": "91-2082980",
                "organization_name": "Jeffersonville Clark County NAACP Youth Council",
                "also_known_as": "Jeffersonville Youth & College Division",
                "mission": "The mission of the NAACP Youth & College Division shall be to inform youth of the problems affecting African Americans and other racial and ethnic minorities; to advance the economic, education, social and political status of African Americans and other racial and ethnic minorities and their harmonious cooperation with other peoples; to stimulate an appreciation of the African Diaspora and other people of color’s contribution to civilization; and to develop an intelligent, effective youth leadership.",
                "website_url": "",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8133627&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/91-2082980",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Tracey Cobb",
                "contact_email": "[email protected]",
                "contact_phone": "(812) 391-6174",
                "contact_title": "Advisor",
                "number_of_employees": "",
                "ruling_year": 1961
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": false,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": true,
                    "independent": false,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 1464",
                "address_line_2": "",
                "city": "Jeffersonville",
                "state": "IN",
                "zip": "47131",
                "msa": "IN - Louisville, KY-IN",
                "county": "Clark, IN",
                "latitude": 38.3005,
                "longitude": -85.7416
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SR050000",
                        "subject_code_description": "Diversity and intergroup relations"
                    },
                    {
                        "subject_code": "SR040200",
                        "subject_code_description": "Ethnic and racial minority rights"
                    },
                    {
                        "subject_code": "SR040000",
                        "subject_code_description": "Antidiscrimination"
                    },
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SB091200",
                        "subject_code_description": "Tutoring"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "R22",
                        "ntee_code_description": "Minority Rights"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(4) Civic Leagues and Social Welfare Organizations"
                },
                "foundation_code": {
                    "foundation_code": "00",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-18T13:37:20.0000000",
                "profile_last_modified": "2022-09-18T13:37:20.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "",
                "last_modified": "2022-11-15T12:27:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7346572",
                "ein": "31-1672272",
                "organization_name": "Dohn Community High School",
                "also_known_as": "Dohn Community High School",
                "mission": "Dohn Community High School is a multi-campus, nonprofit school serving high school-age and adult students. We deliver continuous progress to a full spectrum of learning needs. We promote community engagement, social development, and career fulfillment following graduation.Dohn soars on achieving educational success with the highest graduation rates of all Ohio charter high schools.\"We Make Dreams Come True\" is our vision statement.",
                "website_url": "www.dohnschool.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7882224&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/31-1672272",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Lauren Weissman",
                "contact_email": "[email protected]",
                "contact_phone": "(513) 908-5724",
                "contact_title": "Development Director",
                "number_of_employees": "141",
                "ruling_year": 2000
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "608 E McMillan St",
                "address_line_2": "",
                "city": "Cincinnati",
                "state": "OH",
                "zip": "45206",
                "msa": "OH - Cincinnati, OH-KY-IN",
                "county": "Hamilton, OH",
                "latitude": 39.1264,
                "longitude": -84.4975
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030800",
                        "subject_code_description": "Special needs education"
                    },
                    {
                        "subject_code": "SB030600",
                        "subject_code_description": "Charter school education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 10280882.0,
                    "total_expenses": 9743913.0,
                    "total_assets": 790258.0
                },
                "bmf_gross_receipts": 13561302.0,
                "bmf_assets": 2356542.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-06-17T13:21:05.0000000",
                "profile_last_modified": "2022-06-17T13:21:05.0000000",
                "dei_last_modified": "2022-06-17T00:00:00.0000000",
                "financials_last_modified": "2022-05-12T07:03:09.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7606737",
                "ein": "41-1968798",
                "organization_name": "College Possible",
                "also_known_as": "",
                "mission": "College Possible makes college admission and success possible for low-income students through an intensive curriculum of coaching and support.",
                "website_url": "www.CollegePossible.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8021158&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/41-1968798",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Mr. Al Fan",
                "contact_email": "[email protected]",
                "contact_phone": "(651) 288-9455",
                "contact_title": "CEO",
                "number_of_employees": "775",
                "ruling_year": 2000
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "755 Prior Ave N Ste 210",
                "address_line_2": "",
                "city": "St Paul",
                "state": "MN",
                "zip": "55104",
                "msa": "MN - Minneapolis-St. Paul, MN-WI",
                "county": "Ramsey, MN",
                "latitude": 0.0,
                "longitude": 0.0
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB050200",
                        "subject_code_description": "Undergraduate education"
                    },
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 25329185.0,
                    "total_expenses": 24105792.0,
                    "total_assets": 23322692.0
                },
                "bmf_gross_receipts": 27589101.0,
                "bmf_assets": 23436452.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-07-14T17:22:59.0000000",
                "profile_last_modified": "2022-08-09T09:11:27.0000000",
                "dei_last_modified": "2022-07-25T00:00:00.0000000",
                "financials_last_modified": "2021-06-19T15:00:05.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9178467",
                "ein": "90-0649486",
                "organization_name": "FINE ARTS CENTER PARTNERS",
                "also_known_as": "",
                "mission": "The Fine Arts Center Partners is a 501(c)3 nonprofit organization dedicated to supporting and increasing the visibility of the Fine Arts Center of Greenville County Schools, South Carolina's oldest public high school program for the performing, literary and visual arts. The Partners is an entirely volunteer-run organization, allowing us to donate 100% of all funds raised directly to the school to help fund the extraordinary arts education offered there.",
                "website_url": "http://www.fineartspartners.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8344423&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/90-0649486",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2012
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "102 Pine Knoll Dr",
                "address_line_2": "",
                "city": "Greenville",
                "state": "SC",
                "zip": "29609",
                "msa": "SC - Greenville-Spartanburg-Anderson",
                "county": "Greenville, SC",
                "latitude": 34.8855,
                "longitude": -82.3581
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    },
                    {
                        "subject_code": "SA010500",
                        "subject_code_description": "Arts education"
                    },
                    {
                        "subject_code": "SA010000",
                        "subject_code_description": "Arts services"
                    },
                    {
                        "subject_code": "SA000000",
                        "subject_code_description": "Arts and culture"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "A25",
                        "ntee_code_description": "Arts Education/Schools"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 131109.0,
                "bmf_assets": 22612.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-18T10:29:17.0000000",
                "profile_last_modified": "2022-11-18T10:29:17.0000000",
                "dei_last_modified": "2022-11-18T09:42:04.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-11-18T10:29:17.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9814822",
                "ein": "84-1964211",
                "organization_name": "Rwandan Educational Enrichment",
                "also_known_as": "",
                "mission": "In order to thrive now and in the future, rural Rwandan students— like youth everywhere—need active support in both their formal education and their home environment. Thus we are committed to enriching their school lives and to fighting poverty in the wider communities around them. On school campuses we add and upgrade facilities such as kitchens and classrooms, contribute teaching materials, sponsor teacher training, build basketball courts and support music and art programs, and  provide school and lunch fees. At one remote school we are now building a community health center, including a maternity wing,  which will serve both students and the surrounding area.We also fund small business start-ups and livestock for families/school staff.",
                "website_url": "",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/84-1964211",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2019
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1800 Fager Hill Rd",
                "address_line_2": "",
                "city": "Penryn",
                "state": "CA",
                "zip": "95663",
                "msa": "CA - Sacramento",
                "county": "Placer, CA",
                "latitude": 38.8521,
                "longitude": -121.1694
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SE141700",
                        "subject_code_description": "Pediatrics"
                    },
                    {
                        "subject_code": "SE141200",
                        "subject_code_description": "Obstetrics and gynecology"
                    },
                    {
                        "subject_code": "SE141000",
                        "subject_code_description": "Internal medicine"
                    },
                    {
                        "subject_code": "SE140000",
                        "subject_code_description": "Medical specialties"
                    },
                    {
                        "subject_code": "SE110500",
                        "subject_code_description": "Pharmacies"
                    },
                    {
                        "subject_code": "SE110000",
                        "subject_code_description": "Medical support services"
                    },
                    {
                        "subject_code": "SE070402",
                        "subject_code_description": "Infant care"
                    },
                    {
                        "subject_code": "SE070401",
                        "subject_code_description": "Prenatal care"
                    },
                    {
                        "subject_code": "SE070400",
                        "subject_code_description": "Maternal and perinatal health"
                    },
                    {
                        "subject_code": "SE070000",
                        "subject_code_description": "Reproductive health care"
                    },
                    {
                        "subject_code": "SE050800",
                        "subject_code_description": "Preventive care"
                    },
                    {
                        "subject_code": "SE050700",
                        "subject_code_description": "Urgent care"
                    },
                    {
                        "subject_code": "SE050100",
                        "subject_code_description": "Health care clinics"
                    },
                    {
                        "subject_code": "SE050000",
                        "subject_code_description": "Out-patient medical care"
                    },
                    {
                        "subject_code": "SE040200",
                        "subject_code_description": "Community health care"
                    },
                    {
                        "subject_code": "SE040000",
                        "subject_code_description": "In-patient medical care"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    },
                    {
                        "subject_code": "SB100000",
                        "subject_code_description": "Early childhood education"
                    },
                    {
                        "subject_code": "SB060500",
                        "subject_code_description": "Teacher education"
                    },
                    {
                        "subject_code": "SB060000",
                        "subject_code_description": "Graduate and professional education"
                    },
                    {
                        "subject_code": "SB040100",
                        "subject_code_description": "Vocational secondary education"
                    },
                    {
                        "subject_code": "SB040000",
                        "subject_code_description": "Vocational education"
                    },
                    {
                        "subject_code": "SB030800",
                        "subject_code_description": "Special needs education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ080000",
                        "population_served_description": "Farmers"
                    },
                    {
                        "population_served_code": "PJ030000",
                        "population_served_description": "Self-employed people"
                    },
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PH040000",
                        "population_served_description": "Pregnant people"
                    },
                    {
                        "population_served_code": "PH010000",
                        "population_served_description": "People with disabilities"
                    },
                    {
                        "population_served_code": "PH000000",
                        "population_served_description": "Health"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030400",
                        "population_served_description": "Working poor"
                    },
                    {
                        "population_served_code": "PG030300",
                        "population_served_description": "Extremely poor people"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE030000",
                        "population_served_description": "People of African descent"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PD030000",
                        "population_served_description": "Widows and widowers"
                    },
                    {
                        "population_served_code": "PD020500",
                        "population_served_description": "Stepparents"
                    },
                    {
                        "population_served_code": "PD020400",
                        "population_served_description": "Single parents"
                    },
                    {
                        "population_served_code": "PD020300",
                        "population_served_description": "Grandparents"
                    },
                    {
                        "population_served_code": "PD020200",
                        "population_served_description": "Adolescent parents"
                    },
                    {
                        "population_served_code": "PD020100",
                        "population_served_description": "Foster and adoptive parents"
                    },
                    {
                        "population_served_code": "PD020000",
                        "population_served_description": "Parents"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PC050000",
                        "population_served_description": "Men and boys"
                    },
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B20",
                        "ntee_code_description": "Elementary, Secondary Ed"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-07-25T20:02:04.0000000",
                "profile_last_modified": "2022-07-25T22:02:52.0000000",
                "dei_last_modified": "2022-07-25T16:52:31.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-13T12:30:50.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9940672",
                "ein": "85-1067852",
                "organization_name": "Discover Your Pace Inc",
                "also_known_as": "Discover Your Pace | DYP",
                "mission": "To uplift systemically oppressed intersectional communities by providing equitable access to innovative advisory programs that foster economic sustainability (Manage), self-efficacy (Advance), social intelligence (Balance), & charitable service (Impact).",
                "website_url": "www.discoveryourpace.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8099867&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-1067852",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "20 Martin Ter",
                "address_line_2": "",
                "city": "Randolph",
                "state": "MA",
                "zip": "02368",
                "msa": "MA - Boston",
                "county": "Norfolk, MA",
                "latitude": 42.1553,
                "longitude": -71.0469
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS060400",
                        "subject_code_description": "Self-advocacy"
                    },
                    {
                        "subject_code": "SS060000",
                        "subject_code_description": "Personal services"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SR040000",
                        "subject_code_description": "Antidiscrimination"
                    },
                    {
                        "subject_code": "SR020800",
                        "subject_code_description": "Economic justice"
                    },
                    {
                        "subject_code": "SR020000",
                        "subject_code_description": "Social rights"
                    },
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SQ010000",
                        "subject_code_description": "Community recreation"
                    },
                    {
                        "subject_code": "SQ000000",
                        "subject_code_description": "Sports and recreation"
                    },
                    {
                        "subject_code": "SN050800",
                        "subject_code_description": "Financial counseling"
                    },
                    {
                        "subject_code": "SN050000",
                        "subject_code_description": "Financial services"
                    },
                    {
                        "subject_code": "SN020301",
                        "subject_code_description": "Job counseling"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SK020000",
                        "subject_code_description": "Leadership development"
                    },
                    {
                        "subject_code": "SK000000",
                        "subject_code_description": "Public affairs"
                    },
                    {
                        "subject_code": "SD040000",
                        "subject_code_description": "Nonprofits"
                    },
                    {
                        "subject_code": "SD030000",
                        "subject_code_description": "Voluntarism"
                    },
                    {
                        "subject_code": "SD000000",
                        "subject_code_description": "Philanthropy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090100",
                        "subject_code_description": "Out-of-school learning"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070200",
                        "subject_code_description": "Continuing education"
                    },
                    {
                        "subject_code": "SB070101",
                        "subject_code_description": "Adult literacy"
                    },
                    {
                        "subject_code": "SB070100",
                        "subject_code_description": "Basic and remedial instruction"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ120000",
                        "population_served_description": "Activists"
                    },
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ030000",
                        "population_served_description": "Self-employed people"
                    },
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG010000",
                        "population_served_description": "Immigrants and migrants"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PC050000",
                        "population_served_description": "Men and boys"
                    },
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC010000",
                        "population_served_description": "LGBTQ people"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P20",
                        "ntee_code_description": "Human Service Organizations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-04T02:51:35.0000000",
                "profile_last_modified": "2022-09-04T03:34:19.0000000",
                "dei_last_modified": "2022-09-04T02:49:58.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9930371",
                "ein": "85-2921806",
                "organization_name": "Futurepreneurs Unlimited",
                "also_known_as": "FPU",
                "mission": "Building entrpreneurial thinking and abilities in youth.",
                "website_url": "https://fpus.org",
                "logo_url": "",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-2921806",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "15809 NE 110th St",
                "address_line_2": "",
                "city": "Redmond",
                "state": "WA",
                "zip": "98052",
                "msa": "WA - Seattle-Everett",
                "county": "King, WA",
                "latitude": 47.6988,
                "longitude": -122.128
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050400",
                        "subject_code_description": "Youth organizing"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090300",
                        "subject_code_description": "Computer literacy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB070000",
                        "subject_code_description": "Adult education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PE070000",
                        "population_served_description": "Multiracial people"
                    },
                    {
                        "population_served_code": "PE060000",
                        "population_served_description": "Indigenous peoples"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "O50",
                        "ntee_code_description": "Youth Development Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-29T18:01:53.0000000",
                "profile_last_modified": "2022-09-29T18:01:53.0000000",
                "dei_last_modified": "",
                "financials_last_modified": "",
                "last_modified": "2022-09-29T18:01:53.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9215268",
                "ein": "61-6421787",
                "organization_name": "The Michael Mickey Soroka Charitable Foundation",
                "also_known_as": "Mickey Soroka Foundation",
                "mission": "The Michael “Mickey” Soroka Charitable Foundation is a perpetual foundation that honors the memory of a man dedicated to educating and improving the lives of children.  It is the foundation’s intent to offer educational assistance and contribute to academic programs which inspire and guide Campbell’s youth in the same manner that Mick Soroka provided a “helping hand” to every child who was placed in his care.",
                "website_url": "https://sorokafoundation.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8115569&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/61-6421787",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2012
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 6",
                "address_line_2": "",
                "city": "Campbell",
                "state": "OH",
                "zip": "44405",
                "msa": "OH - Youngstown-Warren",
                "county": "Mahoning, OH",
                "latitude": 41.0767,
                "longitude": -80.591
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB050000",
                        "subject_code_description": "Higher education"
                    },
                    {
                        "subject_code": "SB031000",
                        "subject_code_description": "STEM education"
                    },
                    {
                        "subject_code": "SB030800",
                        "subject_code_description": "Special needs education"
                    },
                    {
                        "subject_code": "SB030700",
                        "subject_code_description": "Gifted education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050200",
                        "population_served_description": "Teachers"
                    },
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "T30",
                        "ntee_code_description": "Public Foundations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-10T16:07:59.0000000",
                "profile_last_modified": "2022-09-10T16:19:16.0000000",
                "dei_last_modified": "2022-09-09T15:38:44.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-10T16:19:16.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9140889",
                "ein": "27-3530769",
                "organization_name": "AGAHOZO-SHALOM YOUTH VILLAGE INC",
                "also_known_as": "ASYV",
                "mission": "Through healing, education, and love, the Agahozo-Shalom Youth Village empowers orphaned and vulnerable Rwandan youth to build lives of dignity and contribute to a better world.",
                "website_url": "www.asyv.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8107001&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/27-3530769",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Shiri Sandler",
                "contact_email": "[email protected]",
                "contact_phone": "(631) 317-1763",
                "contact_title": "Managing Director",
                "number_of_employees": "0",
                "ruling_year": 2011
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "234 5th Ave Ste 209",
                "address_line_2": "",
                "city": "New York City",
                "state": "NY",
                "zip": "10001",
                "msa": "NY - New York, NY-NJ",
                "county": "New York, NY",
                "latitude": 40.7441,
                "longitude": -73.9877
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050800",
                        "subject_code_description": "Community service for youth"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SE120200",
                        "subject_code_description": "Community mental health care"
                    },
                    {
                        "subject_code": "SE120000",
                        "subject_code_description": "Mental health care"
                    },
                    {
                        "subject_code": "SE070601",
                        "subject_code_description": "Comprehensive sex education"
                    },
                    {
                        "subject_code": "SE070600",
                        "subject_code_description": "Sexual education"
                    },
                    {
                        "subject_code": "SE070000",
                        "subject_code_description": "Reproductive health care"
                    },
                    {
                        "subject_code": "SE050600",
                        "subject_code_description": "School-based health care"
                    },
                    {
                        "subject_code": "SE050000",
                        "subject_code_description": "Out-patient medical care"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    },
                    {
                        "subject_code": "SB090300",
                        "subject_code_description": "Computer literacy"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB031000",
                        "subject_code_description": "STEM education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030300",
                        "population_served_description": "Extremely poor people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG010400",
                        "population_served_description": "Refugees and displaced people"
                    },
                    {
                        "population_served_code": "PG010000",
                        "population_served_description": "Immigrants and migrants"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD040100",
                        "population_served_description": "Orphans"
                    },
                    {
                        "population_served_code": "PD040000",
                        "population_served_description": "Non-adult children"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B25",
                        "ntee_code_description": "Secondary/High School"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 2282024.0,
                    "total_expenses": 2059190.0,
                    "total_assets": 15019183.0
                },
                "bmf_gross_receipts": 12412298.0,
                "bmf_assets": 24355900.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-05-23T14:35:58.0000000",
                "profile_last_modified": "2022-09-07T15:20:30.0000000",
                "dei_last_modified": "2022-05-06T12:32:44.0000000",
                "financials_last_modified": "2022-10-13T07:02:25.0000000",
                "last_modified": "2022-10-13T07:02:25.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10054163",
                "ein": "87-2112015",
                "organization_name": "Foundation for Talent Transformation Inc",
                "also_known_as": "",
                "mission": "The Foundation for Talent Transformation helps individuals thrive by helping them understand themselves and others, embrace learning opportunities, and plan for future jobs.",
                "website_url": "https://www.talenttransformation.com/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8239452&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/87-2112015",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2022
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "2395 N Meridian Ave",
                "address_line_2": "",
                "city": "Miami Beach",
                "state": "FL",
                "zip": "33140",
                "msa": "FL - Miami",
                "county": "Miami-dade, FL",
                "latitude": 25.8007,
                "longitude": -80.1347
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN020303",
                        "subject_code_description": "Job retraining"
                    },
                    {
                        "subject_code": "SN020302",
                        "subject_code_description": "Job training"
                    },
                    {
                        "subject_code": "SN020301",
                        "subject_code_description": "Job counseling"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090800",
                        "subject_code_description": "E-learning"
                    },
                    {
                        "subject_code": "SB090300",
                        "subject_code_description": "Computer literacy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020200",
                        "population_served_description": "Older adults"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P50",
                        "ntee_code_description": "Personal Social Services"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Private Operating Foundation"
                },
                "foundation_code": {
                    "foundation_code": "03",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 379102.0,
                "bmf_assets": 262731.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-20T13:19:48.0000000",
                "profile_last_modified": "2022-10-20T14:24:09.0000000",
                "dei_last_modified": "2022-10-20T00:00:00.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-10-20T14:24:09.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7933633",
                "ein": "59-1274421",
                "organization_name": "Morning Star Catholic School Pinellas Park Inc",
                "also_known_as": "",
                "mission": "Morning Star Catholic School a mission of the Catholic Diocese of St. Petersburg, recognizes the unique educational needs of students. The administration, faculty, staff, and parents work together to provide an ungraded academic curriculum in which students can achieve their potential academically, socially, and spiritually.",
                "website_url": "http://www.morningstarschool.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6566439&approved=True",
                "profile_level": "Silver",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/59-1274421",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Susan Conza",
                "contact_email": "[email protected]",
                "contact_phone": "(727) 544-6036",
                "contact_title": "Principal",
                "number_of_employees": "",
                "ruling_year": 1946
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": true,
                    "independent": false,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "4661 80th Ave N",
                "address_line_2": "",
                "city": "Pinellas Park",
                "state": "FL",
                "zip": "33781",
                "msa": "FL - Tampa-St. Petersburg-Clearwater",
                "county": "Pinellas, FL",
                "latitude": 27.8447,
                "longitude": -82.6976
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB040200",
                        "subject_code_description": "Vocational post-secondary education"
                    },
                    {
                        "subject_code": "SB040000",
                        "subject_code_description": "Vocational education"
                    },
                    {
                        "subject_code": "SB030800",
                        "subject_code_description": "Special needs education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030200",
                        "subject_code_description": "Elementary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010200",
                        "population_served_description": "Children"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B28",
                        "ntee_code_description": "Specialized Education Institutions/Schools for Visually or Hearing Impaired, Learning Disabled"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "11",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-03-03T13:39:25.0000000",
                "profile_last_modified": "2022-02-22T14:25:03.0000000",
                "dei_last_modified": "2021-03-03T12:21:36.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "6909904",
                "ein": "13-2707665",
                "organization_name": "Phipps Neighborhoods",
                "also_known_as": "Phipps Neighborhoods",
                "mission": "Phipps Neighborhoods works toward a New York City in which no one is caught in the cycle of poverty. We provide children, youth, and families in low-income neighborhoods the opportunities they need to thrive through comprehensive education and career programs, and access to community services.",
                "website_url": "www.phippsny.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7815199&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/13-2707665",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Andre White",
                "contact_email": "[email protected]",
                "contact_phone": "(646) 388-8233",
                "contact_title": "Executive Director and CEO",
                "number_of_employees": "518",
                "ruling_year": 1973
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "902 Broadway Fl 13",
                "address_line_2": "",
                "city": "New York City",
                "state": "NY",
                "zip": "10010",
                "msa": "NY - New York, NY-NJ",
                "county": "New York, NY",
                "latitude": 40.7392,
                "longitude": -73.9898
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050100",
                        "subject_code_description": "Youth services"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS040302",
                        "subject_code_description": "Child care"
                    },
                    {
                        "subject_code": "SS040300",
                        "subject_code_description": "Child welfare"
                    },
                    {
                        "subject_code": "SS040000",
                        "subject_code_description": "Family services"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SN050800",
                        "subject_code_description": "Financial counseling"
                    },
                    {
                        "subject_code": "SN050000",
                        "subject_code_description": "Financial services"
                    },
                    {
                        "subject_code": "SN020304",
                        "subject_code_description": "Job creation and workforce development"
                    },
                    {
                        "subject_code": "SN020302",
                        "subject_code_description": "Job training"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB100000",
                        "subject_code_description": "Early childhood education"
                    },
                    {
                        "subject_code": "SB090300",
                        "subject_code_description": "Computer literacy"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090100",
                        "subject_code_description": "Out-of-school learning"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB031000",
                        "subject_code_description": "STEM education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG030400",
                        "population_served_description": "Working poor"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020200",
                        "population_served_description": "Older adults"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "S20",
                        "ntee_code_description": "Community, Neighborhood Development, Improvement"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 13207456.0,
                    "total_expenses": 16238811.0,
                    "total_assets": 28930681.0
                },
                "bmf_gross_receipts": 30319775.0,
                "bmf_assets": 46342034.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": true
            },
            "dates": {
                "seal_last_modified": "2022-05-21T14:48:09.0000000",
                "profile_last_modified": "2022-05-21T14:48:09.0000000",
                "dei_last_modified": "2022-05-21T14:39:25.0000000",
                "financials_last_modified": "2021-06-19T03:00:20.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10106492",
                "ein": "88-3862732",
                "organization_name": "The Complex Trauma Research and Advocacy Institute",
                "also_known_as": "Attached2Achieve",
                "mission": "Purpose and Mission:The Complex Trauma Research and Advocacy Institute (a) researches open questions from prior practice about overcoming the conditions that lead to complex trauma and foster care and provide (b) a mentor-ship to cultivate personal preparation to achieve college attendance for those currently in foster care grades 8-12. The Complex Trauma Research and Advocacy Institute conduct practice and action-based research to affect the caring climate in sociological communities required to engender support, encouragement, and validation, e.g., school, church, and family, reducing cumulative trauma and judgment.",
                "website_url": "www.attached2achieve.com",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8367034&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/88-3862732",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Dr. Michael Smart, Ph.D.",
                "contact_email": "[email protected]",
                "contact_phone": "(480) 810-2910",
                "contact_title": "Managing Director",
                "number_of_employees": "",
                "ruling_year": 2022
            },
            "properties": {
                "bmf_status": false,
                "pub78_verified": false,
                "allow_online_giving": true,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "522 N Central Ave",
                "address_line_2": "",
                "city": "Phoenix",
                "state": "AZ",
                "zip": "85004",
                "msa": "AZ - Phoenix-Mesa",
                "county": "Maricopa, AZ",
                "latitude": 33.4537,
                "longitude": -112.0738
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS090200",
                        "subject_code_description": "Homeless services"
                    },
                    {
                        "subject_code": "SS090100",
                        "subject_code_description": "Developmental disability services"
                    },
                    {
                        "subject_code": "SS090000",
                        "subject_code_description": "Special population support"
                    },
                    {
                        "subject_code": "SS050900",
                        "subject_code_description": "Religion for youth"
                    },
                    {
                        "subject_code": "SS050600",
                        "subject_code_description": "Economics for youth"
                    },
                    {
                        "subject_code": "SS050400",
                        "subject_code_description": "Youth organizing"
                    },
                    {
                        "subject_code": "SS050300",
                        "subject_code_description": "Youth mentoring"
                    },
                    {
                        "subject_code": "SS050100",
                        "subject_code_description": "Youth services"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS040300",
                        "subject_code_description": "Child welfare"
                    },
                    {
                        "subject_code": "SS040200",
                        "subject_code_description": "Adolescent parenting"
                    },
                    {
                        "subject_code": "SS040000",
                        "subject_code_description": "Family services"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SR040700",
                        "subject_code_description": "Children's rights"
                    },
                    {
                        "subject_code": "SR040300",
                        "subject_code_description": "Disabled persons' rights"
                    },
                    {
                        "subject_code": "SR040000",
                        "subject_code_description": "Antidiscrimination"
                    },
                    {
                        "subject_code": "SR020800",
                        "subject_code_description": "Economic justice"
                    },
                    {
                        "subject_code": "SR020700",
                        "subject_code_description": "Cultural rights"
                    },
                    {
                        "subject_code": "SR020300",
                        "subject_code_description": "Freedom of information"
                    },
                    {
                        "subject_code": "SR020000",
                        "subject_code_description": "Social rights"
                    },
                    {
                        "subject_code": "SR010000",
                        "subject_code_description": "Individual liberties"
                    },
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SG090700",
                        "subject_code_description": "Poverty studies"
                    },
                    {
                        "subject_code": "SG090000",
                        "subject_code_description": "Interdisciplinary studies"
                    },
                    {
                        "subject_code": "SG040000",
                        "subject_code_description": "Psychology and behavioral science"
                    },
                    {
                        "subject_code": "SG000000",
                        "subject_code_description": "Social sciences"
                    },
                    {
                        "subject_code": "SE120000",
                        "subject_code_description": "Mental health care"
                    },
                    {
                        "subject_code": "SE000000",
                        "subject_code_description": "Health"
                    },
                    {
                        "subject_code": "SB091200",
                        "subject_code_description": "Tutoring"
                    },
                    {
                        "subject_code": "SB090500",
                        "subject_code_description": "Student retention"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB030900",
                        "subject_code_description": "Child educational development"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050300",
                        "population_served_description": "Researchers"
                    },
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG060000",
                        "population_served_description": "Victims and oppressed people"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PD040300",
                        "population_served_description": "Foster and adoptive children"
                    },
                    {
                        "population_served_code": "PD040000",
                        "population_served_description": "Non-adult children"
                    },
                    {
                        "population_served_code": "PD010200",
                        "population_served_description": "Families of choice"
                    },
                    {
                        "population_served_code": "PD010000",
                        "population_served_description": "Families"
                    },
                    {
                        "population_served_code": "PD000000",
                        "population_served_description": "Family relationships"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": null,
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-11-26T14:51:03.0000000",
                "profile_last_modified": "2022-11-26T14:51:03.0000000",
                "dei_last_modified": "2022-11-26T00:00:00.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-11-26T14:51:03.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9968776",
                "ein": "85-2923799",
                "organization_name": "Xceleader",
                "also_known_as": "",
                "mission": "Increase and strengthen Black leadership by providing tools that inspire action and fuel ambition.",
                "website_url": "https://www.xceleader.com",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8376549&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-2923799",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "950 Brittany Park Dr",
                "address_line_2": "",
                "city": "Antioch",
                "state": "TN",
                "zip": "37013",
                "msa": "TN - Nashville",
                "county": "Davidson, TN",
                "latitude": 36.0601,
                "longitude": -86.6722
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN020302",
                        "subject_code_description": "Job training"
                    },
                    {
                        "subject_code": "SN020300",
                        "subject_code_description": "Employment"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SK020000",
                        "subject_code_description": "Leadership development"
                    },
                    {
                        "subject_code": "SK000000",
                        "subject_code_description": "Public affairs"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PE030000",
                        "population_served_description": "People of African descent"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PA020200",
                        "population_served_description": "Older adults"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "R99",
                        "ntee_code_description": "Civil Rights, Social Action, and Advocacy N.E.C."
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-07-12T13:33:12.0000000",
                "profile_last_modified": "2022-11-29T12:01:13.0000000",
                "dei_last_modified": "2022-11-29T11:54:57.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-11-29T12:01:13.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9969095",
                "ein": "85-3339422",
                "organization_name": "Institute for Youth in Policy",
                "also_known_as": "YIP Institute",
                "mission": "The Institute for Youth in Policy is a youth-run, nonpartisan Institute utilizing discourse to redefine the way youth interacts with policy. Within the Institute, young leaders cultivate curriculum, content, and policy which spurs fundamental innovation through discussional richness and diversity of thought.We are students helping other students succeed and we believe constructive discourse is the key to forging lasting impact, as the movement we are leading continues to grow. Our large membership keeps us on track to ensure the most efficient, innovative, and effective approach.",
                "website_url": "https://yipinstitute.com",
                "logo_url": "",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/85-3339422",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2021
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1700 Van Ness Ave # 1143",
                "address_line_2": "",
                "city": "San Francisco",
                "state": "CA",
                "zip": "94109",
                "msa": "CA - San Francisco-Oakland",
                "county": "San Francisco, CA",
                "latitude": 37.7913,
                "longitude": -122.4224
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN060300",
                        "subject_code_description": "Corporate social responsibility"
                    },
                    {
                        "subject_code": "SN060000",
                        "subject_code_description": "Business and industry"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SK040000",
                        "subject_code_description": "Democracy"
                    },
                    {
                        "subject_code": "SK010000",
                        "subject_code_description": "Public policy"
                    },
                    {
                        "subject_code": "SK000000",
                        "subject_code_description": "Public affairs"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050200",
                        "population_served_description": "Teachers"
                    },
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "S05",
                        "ntee_code_description": "Research Institutes and/or Public Policy Analysis"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-03T15:33:01.0000000",
                "profile_last_modified": "2022-10-03T15:33:01.0000000",
                "dei_last_modified": "2021-10-12T16:28:54.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-10-03T15:33:01.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "10057769",
                "ein": "86-1950468",
                "organization_name": "Black Girls Leadership Academy",
                "also_known_as": "BGLA",
                "mission": "Black Girls Leadership Academy seeks to build the self-esteem and self-worth of Black girls by changing their outlook on life, broadening their horizons, and helping them to empower themselves and others. We value the opportunity to enrich the lives of young girls and women aged 11 to 24 years old through mentorship, arts, education, cultural exploration, and community service. At BGLA, Black girls are offered access to enrichment programs and opportunities that place special emphasis on personal development through mentorship and cooperative learning.",
                "website_url": "www.blackgirlslead.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8232968&approved=True",
                "profile_level": "Bronze",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/86-1950468",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-BRONZE2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Victoria Gichohi",
                "contact_email": "[email protected]",
                "contact_phone": "(310) 678-1129",
                "contact_title": "Co-Founder",
                "number_of_employees": "",
                "ruling_year": 2022
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "1311 N McDivitt Ave",
                "address_line_2": "",
                "city": "Compton",
                "state": "CA",
                "zip": "90221",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 33.9047,
                "longitude": -118.2181
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SN030400",
                        "subject_code_description": "Community service"
                    },
                    {
                        "subject_code": "SN030000",
                        "subject_code_description": "Community improvement"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090800",
                        "subject_code_description": "E-learning"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PH040000",
                        "population_served_description": "Pregnant people"
                    },
                    {
                        "population_served_code": "PH010000",
                        "population_served_description": "People with disabilities"
                    },
                    {
                        "population_served_code": "PH000000",
                        "population_served_description": "Health"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PE030000",
                        "population_served_description": "People of African descent"
                    },
                    {
                        "population_served_code": "PE000000",
                        "population_served_description": "Ethnic and racial groups"
                    },
                    {
                        "population_served_code": "PC040203",
                        "population_served_description": "Senior women"
                    },
                    {
                        "population_served_code": "PC040201",
                        "population_served_description": "Young women"
                    },
                    {
                        "population_served_code": "PC040200",
                        "population_served_description": "Women"
                    },
                    {
                        "population_served_code": "PC040104",
                        "population_served_description": "Adolescent girls"
                    },
                    {
                        "population_served_code": "PC040103",
                        "population_served_description": "Preteen girls"
                    },
                    {
                        "population_served_code": "PC040102",
                        "population_served_description": "Young girls"
                    },
                    {
                        "population_served_code": "PC040100",
                        "population_served_description": "Girls"
                    },
                    {
                        "population_served_code": "PC040000",
                        "population_served_description": "Women and girls"
                    },
                    {
                        "population_served_code": "PC030000",
                        "population_served_description": "Intersex people"
                    },
                    {
                        "population_served_code": "PC020000",
                        "population_served_description": "Heterosexuals"
                    },
                    {
                        "population_served_code": "PC010400",
                        "population_served_description": "Transgender people"
                    },
                    {
                        "population_served_code": "PC010300",
                        "population_served_description": "Bisexuals"
                    },
                    {
                        "population_served_code": "PC010100",
                        "population_served_description": "Lesbians"
                    },
                    {
                        "population_served_code": "PC010000",
                        "population_served_description": "LGBTQ people"
                    },
                    {
                        "population_served_code": "PC000000",
                        "population_served_description": "Sexual identity"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B99",
                        "ntee_code_description": "Education N.E.C."
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-10-18T18:46:45.0000000",
                "profile_last_modified": "2022-10-18T18:46:45.0000000",
                "dei_last_modified": "2022-10-18T15:38:59.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-10-18T18:46:45.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9233903",
                "ein": "90-0850890",
                "organization_name": "Youngzine News",
                "also_known_as": "",
                "mission": "Youngzine's mission is to teach young people about the environment and the changing climate and empower them to create a future that is just and sustainable",
                "website_url": "http://www.youngzine.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7838101&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/90-0850890",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2013
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "10386 Avenida Ln",
                "address_line_2": "",
                "city": "Cupertino",
                "state": "CA",
                "zip": "95014",
                "msa": "CA - San Jose",
                "county": "Santa Clara, CA",
                "latitude": 37.3166,
                "longitude": -122.0752
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SR020800",
                        "subject_code_description": "Economic justice"
                    },
                    {
                        "subject_code": "SR020600",
                        "subject_code_description": "Environmental and resource rights"
                    },
                    {
                        "subject_code": "SR020000",
                        "subject_code_description": "Social rights"
                    },
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SF010000",
                        "subject_code_description": "Physical and earth sciences"
                    },
                    {
                        "subject_code": "SF000000",
                        "subject_code_description": "Science"
                    },
                    {
                        "subject_code": "SC060100",
                        "subject_code_description": "Environmental studies"
                    },
                    {
                        "subject_code": "SC060000",
                        "subject_code_description": "Environmental education"
                    },
                    {
                        "subject_code": "SC040000",
                        "subject_code_description": "Biodiversity"
                    },
                    {
                        "subject_code": "SC030000",
                        "subject_code_description": "Natural resources"
                    },
                    {
                        "subject_code": "SC020000",
                        "subject_code_description": "Climate change"
                    },
                    {
                        "subject_code": "SC010000",
                        "subject_code_description": "Environmental justice"
                    },
                    {
                        "subject_code": "SC000000",
                        "subject_code_description": "Environment"
                    },
                    {
                        "subject_code": "SB031000",
                        "subject_code_description": "STEM education"
                    },
                    {
                        "subject_code": "SB030400",
                        "subject_code_description": "Secondary education"
                    },
                    {
                        "subject_code": "SB030300",
                        "subject_code_description": "Middle school education"
                    },
                    {
                        "subject_code": "SB030000",
                        "subject_code_description": "Elementary and secondary education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050200",
                        "population_served_description": "Teachers"
                    },
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "A30",
                        "ntee_code_description": "Media, Communications Organizations"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-05-31T20:16:07.0000000",
                "profile_last_modified": "2022-05-31T20:20:30.0000000",
                "dei_last_modified": "2020-06-03T11:48:28.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9930923",
                "ein": "85-3048142",
                "organization_name": "Create and Collaborate",
                "also_known_as": "Create + Collaborate",
                "mission": "WE CREATE ENDLESS OPPORTUNITIES FOR UNDERSERVED YOUTH THROUGH COLLABORATIVE PARTNERSHIPS BY PROVIDING THEM WITH THE RESOURCES THEY NEED TO DREAM AND SUCCEED.",
                "website_url": "www.createandco.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=6670794&approved=True",
                "profile_level": "Silver",
                "profile_year": 2021,
                "profile_link": "https://www.guidestar.org/profile/85-3048142",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2021-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "850 Cotton Depot Ln Apt 238",
                "address_line_2": "",
                "city": "Fort Worth",
                "state": "TX",
                "zip": "76102",
                "msa": "TX - Fort Worth",
                "county": "Tarrant, TX",
                "latitude": 32.7567,
                "longitude": -97.3256
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SQ022200",
                        "subject_code_description": "Sports training"
                    },
                    {
                        "subject_code": "SQ020000",
                        "subject_code_description": "Sports"
                    },
                    {
                        "subject_code": "SQ000000",
                        "subject_code_description": "Sports and recreation"
                    },
                    {
                        "subject_code": "SN030400",
                        "subject_code_description": "Community service"
                    },
                    {
                        "subject_code": "SN030000",
                        "subject_code_description": "Community improvement"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB010000",
                        "subject_code_description": "Equal opportunity in education"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PG060100",
                        "population_served_description": "Victims of crime and abuse"
                    },
                    {
                        "population_served_code": "PG060000",
                        "population_served_description": "Victims and oppressed people"
                    },
                    {
                        "population_served_code": "PG050000",
                        "population_served_description": "At-risk youth"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    },
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010300",
                        "population_served_description": "Preteens"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "O99",
                        "ntee_code_description": "Other Youth Development N.E.C."
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2021-03-29T13:44:56.0000000",
                "profile_last_modified": "2022-02-22T15:06:20.0000000",
                "dei_last_modified": "2021-03-29T12:18:08.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9882070",
                "ein": "84-5190933",
                "organization_name": "Record Success Inc",
                "also_known_as": "",
                "mission": "Record Success, Inc. is dedicated to helping students determine their college/career choices and to serving historically disadvantaged groups, first-generation students, and non-traditional populations.",
                "website_url": "http://www.recordsuccess.org/",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7427129&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/84-5190933",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "",
                "contact_email": "",
                "contact_phone": "",
                "contact_title": "",
                "number_of_employees": "",
                "ruling_year": 2020
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": true,
                "dei_submitted": false,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 723",
                "address_line_2": "",
                "city": "Vero Beach",
                "state": "FL",
                "zip": "32961",
                "msa": "",
                "county": "Indian River, FL",
                "latitude": 27.6386,
                "longitude": -80.3973
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050100",
                        "subject_code_description": "Youth services"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SB090800",
                        "subject_code_description": "E-learning"
                    },
                    {
                        "subject_code": "SB090700",
                        "subject_code_description": "Educational testing"
                    },
                    {
                        "subject_code": "SB090200",
                        "subject_code_description": "College preparation"
                    },
                    {
                        "subject_code": "SB090000",
                        "subject_code_description": "Education services"
                    },
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA020100",
                        "population_served_description": "Young adults"
                    },
                    {
                        "population_served_code": "PA020000",
                        "population_served_description": "Adults"
                    },
                    {
                        "population_served_code": "PA010400",
                        "population_served_description": "Adolescents"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "A33",
                        "ntee_code_description": "Printing, Publishing"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "16",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "",
                    "fiscal_year": null,
                    "total_revenue": null,
                    "total_expenses": null,
                    "total_assets": null
                },
                "bmf_gross_receipts": 0.0,
                "bmf_assets": 0.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-01-18T13:55:02.0000000",
                "profile_last_modified": "2022-01-18T15:15:55.0000000",
                "dei_last_modified": "2020-12-30T20:59:43.0000000",
                "financials_last_modified": "",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        }
    ]
}

This example will return organizations who match the following logic: (college preparation OR secondary education) AND young adults

Filter by organizations who submitted demographic data to Candid

Find organizations who have submitted demographic data to Candid

{
     "filters": {
          "organization": {
               "properties": {
                    "dei_submitted": true
               }
          }
     }
}
{
    "code": 200,
    "message": "Request was processed successfully!",
    "took": 485,
    "time": "2022-12-06 23:08:42Z",
    "results_count": 41561,
    "page_count": 1663,
    "errors": [],
    "hits": [
        {
            "organization": {
                "organization_id": "6915309",
                "ein": "13-3170676",
                "organization_name": "City Harvest, Inc.",
                "also_known_as": "City Harvest",
                "mission": "City Harvest exists to end hunger in communities throughout New York City. We do this through food rescue and distribution, education, and other practical, innovative solutions.",
                "website_url": "www.cityharvest.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8096864&approved=True",
                "profile_level": "Silver",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/13-3170676",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-SILVER2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Ms. Julia Foster",
                "contact_email": "[email protected]",
                "contact_phone": "(646) 412-0600",
                "contact_title": "Sr. Director, Marketing and Communications",
                "number_of_employees": "227",
                "ruling_year": 1983
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "150 52nd St",
                "address_line_2": "",
                "city": "Brooklyn",
                "state": "NY",
                "zip": "11232",
                "msa": "NY - New York, NY-NJ",
                "county": "Kings, NY",
                "latitude": 40.6486,
                "longitude": -74.0192
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS030600",
                        "subject_code_description": "Food aid"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ020000",
                        "population_served_description": "Unemployed people"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PG030200",
                        "population_served_description": "Low-income people"
                    },
                    {
                        "population_served_code": "PG030000",
                        "population_served_description": "Economically disadvantaged people"
                    },
                    {
                        "population_served_code": "PG000000",
                        "population_served_description": "Social and economic status"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "K30",
                        "ntee_code_description": "Food Service, Free Food Distribution Programs"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 209408208.0,
                    "total_expenses": 173032086.0,
                    "total_assets": 68782018.0
                },
                "bmf_gross_receipts": 343853882.0,
                "bmf_assets": 247643712.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-02T12:17:54.0000000",
                "profile_last_modified": "2022-09-02T12:17:54.0000000",
                "dei_last_modified": "2019-08-01T00:00:00.0000000",
                "financials_last_modified": "2021-04-12T23:00:05.0000000",
                "last_modified": "2022-11-15T12:27:00.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "9362907",
                "ein": "46-4503539",
                "organization_name": "BABY2BABY",
                "also_known_as": "",
                "mission": "Baby2Baby provides children living in poverty with diapers, clothing and all the basic necessities that every child deserves.",
                "website_url": "www.baby2baby.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8106169&approved=True",
                "profile_level": "Gold",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/46-4503539",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-GOLD2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Jen Armstrong",
                "contact_email": "[email protected]",
                "contact_phone": "(323) 933-2229 x0",
                "contact_title": "Chief Operating Officer",
                "number_of_employees": "38",
                "ruling_year": 2014
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "5830 W Jefferson Blvd",
                "address_line_2": "",
                "city": "Los Angeles",
                "state": "CA",
                "zip": "90016",
                "msa": "CA - Los Angeles-Long Beach",
                "county": "Los Angeles, CA",
                "latitude": 34.0249,
                "longitude": -118.3765
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS050100",
                        "subject_code_description": "Youth services"
                    },
                    {
                        "subject_code": "SS050000",
                        "subject_code_description": "Youth development"
                    },
                    {
                        "subject_code": "SS030000",
                        "subject_code_description": "Basic and emergency aid"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SD040000",
                        "subject_code_description": "Nonprofits"
                    },
                    {
                        "subject_code": "SD000000",
                        "subject_code_description": "Philanthropy"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "P30",
                        "ntee_code_description": "Children's and Youth Services"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 67313093.0,
                    "total_expenses": 61594570.0,
                    "total_assets": 19624504.0
                },
                "bmf_gross_receipts": 73320858.0,
                "bmf_assets": 19624504.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-09-07T13:18:34.0000000",
                "profile_last_modified": "2022-09-07T13:18:34.0000000",
                "dei_last_modified": "2022-09-07T00:00:00.0000000",
                "financials_last_modified": "2022-05-30T17:00:19.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "8951454",
                "ein": "27-2559468",
                "organization_name": "AAA Scholarship Foundation Inc",
                "also_known_as": "AAA Scholarships",
                "mission": "AAA Scholarship Foundation's mission is to provide economic and other assistance to economically-disadvantaged families to enable them to select the best schools for their children.",
                "website_url": "www.aaascholarships.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=7618073&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/27-2559468",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Kimberly Dyson",
                "contact_email": "[email protected]",
                "contact_phone": "(888) 707-2465 x710",
                "contact_title": "President",
                "number_of_employees": "18",
                "ruling_year": 2010
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "PO Box 15719",
                "address_line_2": "",
                "city": "Tampa",
                "state": "FL",
                "zip": "33684",
                "msa": "FL - Tampa-St. Petersburg-Clearwater",
                "county": "Hillsborough, FL",
                "latitude": 27.9967,
                "longitude": -82.4837
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SB000000",
                        "subject_code_description": "Education"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PJ050100",
                        "population_served_description": "Students"
                    },
                    {
                        "population_served_code": "PJ050000",
                        "population_served_description": "Academics"
                    },
                    {
                        "population_served_code": "PJ000000",
                        "population_served_description": "Work status and occupations"
                    },
                    {
                        "population_served_code": "PA010000",
                        "population_served_description": "Children and youth"
                    },
                    {
                        "population_served_code": "PA000000",
                        "population_served_description": "Age groups"
                    }
                ],
                "ntee_codes": [
                    {
                        "ntee_code": "B82",
                        "ntee_code_description": "Scholarships, Student Financial Aid, Awards"
                    }
                ],
                "subsection_code": {
                    "subsection_code": "",
                    "subsection_code_description": "501(c)(3) Public Charity"
                },
                "foundation_code": {
                    "foundation_code": "15",
                    "foundation_code_description": ""
                }
            },
            "financials": {
                "most_recent_year": {
                    "form_type": "990",
                    "fiscal_year": 2020,
                    "total_revenue": 46844334.0,
                    "total_expenses": 31564950.0,
                    "total_assets": 71436356.0
                },
                "bmf_gross_receipts": 66886375.0,
                "bmf_assets": 68762945.0,
                "required_to_file_990t": false,
                "a_133_audit_performed": false
            },
            "dates": {
                "seal_last_modified": "2022-03-08T12:23:29.0000000",
                "profile_last_modified": "2022-03-08T12:23:29.0000000",
                "dei_last_modified": "2022-03-01T14:10:06.0000000",
                "financials_last_modified": "2021-06-20T21:00:08.0000000",
                "last_modified": "2022-09-09T13:27:18.0000000"
            }
        },
        {
            "organization": {
                "organization_id": "7594037",
                "ein": "41-0907857",
                "organization_name": "Lifeworks Services Inc.",
                "also_known_as": "Lifeworks",
                "mission": "Our mission is to partner with people with disabilities to drive change by increasing opportunity and access in the community.",
                "website_url": "lifeworks.org",
                "logo_url": "https://www.guidestar.org/ViewEdoc.aspx?eDocId=8292928&approved=True",
                "profile_level": "Platinum",
                "profile_year": 2022,
                "profile_link": "https://www.guidestar.org/profile/41-0907857",
                "profile_logo": "https://www.guidestar.org/App_Themes/MainSite2/images/ProfilePageSvgs/profile-PLATINUM2022-seal.svg",
                "leader_name": "",
                "leader_title": "",
                "contact_name": "Emma Rohrer",
                "contact_email": "[email protected]",
                "contact_phone": "(651) 332-6822",
                "contact_title": "Vice President of Advancement",
                "number_of_employees": "2143",
                "ruling_year": 1974
            },
            "properties": {
                "bmf_status": true,
                "pub78_verified": true,
                "allow_online_giving": false,
                "dei_submitted": true,
                "revoked": false,
                "defunct_or_merged": false,
                "relationship_type": {
                    "parent": false,
                    "subordinate": false,
                    "independent": true,
                    "headquarters": false
                }
            },
            "geography": {
                "address_line_1": "6636 Cedar Ave S Ste 250",
                "address_line_2": "",
                "city": "Minneapolis",
                "state": "MN",
                "zip": "55423",
                "msa": "MN - Minneapolis-St. Paul, MN-WI",
                "county": "Hennepin, MN",
                "latitude": 44.8826,
                "longitude": -93.2479
            },
            "taxonomies": {
                "subject_codes": [
                    {
                        "subject_code": "SS090100",
                        "subject_code_description": "Developmental disability services"
                    },
                    {
                        "subject_code": "SS090000",
                        "subject_code_description": "Special population support"
                    },
                    {
                        "subject_code": "SS000000",
                        "subject_code_description": "Human services"
                    },
                    {
                        "subject_code": "SR040300",
                        "subject_code_description": "Disabled persons' rights"
                    },
                    {
                        "subject_code": "SR040000",
                        "subject_code_description": "Antidiscrimination"
                    },
                    {
                        "subject_code": "SR000000",
                        "subject_code_description": "Human rights"
                    },
                    {
                        "subject_code": "SN020000",
                        "subject_code_description": "Economic development"
                    },
                    {
                        "subject_code": "SN000000",
                        "subject_code_description": "Community and economic development"
                    }
                ],
                "population_served_codes": [
                    {
                        "population_served_code": "PH010500",
                        "population_served_description": "People with intellectual disabilities"
                    },
                    {