Discover/snow.day API
live

snow.day APIsnow.day

Access Snow.day's database of high school enrichment programs via API. Search, filter, and retrieve costs, deadlines, and curated lists across 7 endpoints.

Endpoints
7
Updated
28d ago
Try it
Page number (0-indexed).
Number of results per page.
Search keyword or interest.
JSON object containing filters. Supported keys: FILTER_SEASON (array of values: SUMMER, FALL, SPRING, YEAR_ROUND), FILTER_TYPE (array of values: PROGRAM, COMPETITION), FILTER_ONLINE_ONLY (boolean), FILTER_GRADE (array of integers representing grade levels), FILTER_FINANCIAL_ACCESSIBILITY (array of ratings: A_PLUS, A, A_MINUS, B_PLUS, B, B_MINUS, C_PLUS, C, C_MINUS), FILTER_EXPERTS_CHOICE (array of values: MOST_RECOMMENDED, HIGHLY_RECOMMENDED). All array filter values must be provided as arrays even for single values.
Field to sort by: relevancy, expertsChoiceRating, isHighlySelective, deadline, financialAccessibilityGrade.
Sort order: ASC or DESC.
api.parse.bot/scraper/7846f91d-0b33-49f3-aa92-53f8fc6240fb/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7846f91d-0b33-49f3-aa92-53f8fc6240fb/search_opportunities?page=0&limit=5&query=STEM' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Search and browse extracurricular opportunities with optional query, filtering, and sorting. Returns paginated results from the Snowday database.

Input
ParamTypeDescription
pageintegerPage number (0-indexed).
limitintegerNumber of results per page.
querystringSearch keyword or interest.
filterobjectJSON object containing filters. Supported keys: FILTER_SEASON (array of values: SUMMER, FALL, SPRING, YEAR_ROUND), FILTER_TYPE (array of values: PROGRAM, COMPETITION), FILTER_ONLINE_ONLY (boolean), FILTER_GRADE (array of integers representing grade levels), FILTER_FINANCIAL_ACCESSIBILITY (array of ratings: A_PLUS, A, A_MINUS, B_PLUS, B, B_MINUS, C_PLUS, C, C_MINUS), FILTER_EXPERTS_CHOICE (array of values: MOST_RECOMMENDED, HIGHLY_RECOMMENDED). All array filter values must be provided as arrays even for single values.
sort_fieldstringField to sort by: relevancy, expertsChoiceRating, isHighlySelective, deadline, financialAccessibilityGrade.
sort_orderstringSort order: ASC or DESC.
Response
{
  "type": "object",
  "fields": {
    "pageSize": "integer, number of results on this page",
    "pageNumber": "integer, current page number",
    "totalCount": "integer, total matching opportunities",
    "learningOpportunities": "array of opportunity summary objects with id, name, type, seasons, financialAccessibilityGrade, provider, sessions, deadlines"
  },
  "sample": {
    "data": {
      "pageSize": 5,
      "pageNumber": 0,
      "totalCount": 148,
      "learningOpportunities": [
        {
          "id": "627d74dc-b13e-49cd-854a-903e5eb0f851",
          "name": "PoweringSTEM Hacks",
          "type": "COMPETITION",
          "seasons": [
            "FALL"
          ],
          "provider": {
            "id": "e65adede-7317-40d7-ac65-91bd84486cac",
            "name": "PoweringSTEM"
          },
          "interests": [
            {
              "id": "d520a621-9b1a-4110-ad15-7708123ea69a",
              "name": "Coding"
            }
          ],
          "isHighlySelective": false,
          "expertsChoiceRating": null,
          "financialAccessibilityGrade": "A"
        }
      ]
    },
    "status": "success"
  }
}

About the snow.day API

The Snow.day API gives programmatic access to a database of extracurricular and enrichment opportunities for high school students across 7 endpoints. Using search_opportunities, you can query by keyword, filter by season, and sort by financial accessibility grade or deadline. Each record surfaces fields including program name, type, cost info, provider, sessions, and deadlines — enough to build directory tools, recommendation engines, or student-facing apps.

Search and Browse Opportunities

The search_opportunities endpoint accepts a query string alongside a filter object that supports season values (SUMMER, FALL, SPRING, YEAR_ROUND) and other facets. Results can be sorted by relevancy, expertsChoiceRating, isHighlySelective, deadline, or financialAccessibilityGrade, with sort_order set to ASC or DESC. Pagination is 0-indexed via page and limit parameters. Each result in learningOpportunities includes the opportunity's id, name, type (PROGRAM or COMPETITION), seasons, financialAccessibilityGrade, provider, and arrays of sessions and deadlines. If you want to browse without a query, browse_all_opportunities provides the same paginated structure with no required parameters.

Detail and Cost Endpoints

get_opportunity_detail requires both a uuid (from search results) and a slug (the kebab-case program name). It returns the full record including a description string, the external url, costInfo, and structured sessions with dates and location data. For workflows that only need financial information, get_opportunity_cost returns a focused subset: tuition, costInfo, applicationFee, financialAccessibilityGrade, and a costInfoStatus field that indicates whether cost data is UP_TO_DATE or NOT_PROVIDED.

Curated Lists

get_lists returns paginated metadata for publicly curated program collections, including each list's id, name, and authorDisplayName. Passing a list's uuid and slug to get_list_detail returns the full list contents: an items array of opportunity objects with curator notes, a markdown description, and the author name. Lists are a useful starting point for surfacing editorially vetted program collections without constructing custom filters.

Discovery with Top Searches

get_top_searches requires no inputs and returns a categories array. Each category has a name and either a filter object or a query string, mirroring exactly the parameters accepted by search_opportunities. This makes it straightforward to replicate the homepage discovery experience or seed an autocomplete UI with commonly used search terms.

Common use cases
  • Build a program recommendation tool filtered by season and financial accessibility grade
  • Aggregate deadline data from multiple opportunities to power a student calendar feature
  • Display curated program lists with curator notes sourced from get_list_detail
  • Surface financial aid accessibility ratings to help students identify affordable programs
  • Generate a searchable directory of high school competitions filtered by COMPETITION type
  • Use get_top_searches categories to populate a homepage discovery widget
  • Compare tuition and application fees across programs using get_opportunity_cost in bulk
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Snow.day have an official public developer API?+
Snow.day does not currently offer a documented public developer API. Access to structured program data is provided through this Parse API.
What does the filter object in search_opportunities support?+
The filter object accepts a FILTER_SEASON key with an array of season values: SUMMER, FALL, SPRING, and YEAR_ROUND. You can combine multiple seasons in a single request. Additional filter keys may be supported; the season filter is the documented primary facet.
How reliable is the cost information returned by get_opportunity_cost?+
The costInfoStatus field indicates whether cost data is UP_TO_DATE or NOT_PROVIDED. When a program has not published cost details, tuition, costInfo, and applicationFee may return null. Check costInfoStatus before surfacing pricing to end users.
Does the API return user reviews or ratings for programs?+
Not currently. The API exposes an expertsChoiceRating sort field and an isHighlySelective flag, but does not return individual user reviews or rating breakdowns per opportunity. You can fork this API on Parse and revise it to add an endpoint targeting review data if Snow.day exposes it.
Can I retrieve programs for age groups outside high school, such as middle school students?+
The API currently covers opportunities in the Snow.day database, which is oriented toward high school students. There are no age-range filter parameters exposed in the current endpoint set. You can fork this API on Parse and revise it to add filtering by age or grade level if that data becomes available.
Page content last updated . Spec covers 7 endpoints from snow.day.
Related APIs in EducationSee all →
opendays.com API
Search and discover open day events at educational institutions, view detailed event information and institution profiles, and browse the complete calendar of upcoming visits. Find the perfect school or university open day by searching institutions or exploring all available options with their program details and dates.
notgoingtouni.co.uk API
Search and discover apprenticeship opportunities across sectors and companies on NotGoingToUni.co.uk, filtering by opportunity types and viewing detailed information about specific roles. Browse featured apprenticeships and explore available sectors and employers to find the right career path.
senecapolytechnic.ca API
Search and explore Seneca Polytechnic's programs and courses to find detailed information about admissions requirements, costs, credentials, and learning pathways. Discover which programs match your interests by browsing by credential type or program category, and get complete course listings for any program you're considering.
sundance.org API
Discover and explore Sundance Institute film grants and funding opportunities, including detailed program information, eligibility criteria, application requirements, and award details from the official Sundance portal. List all active funding programs and retrieve comprehensive details for any specific grant.
gradschools.com API
Search graduate programs across multiple categories and discover articles about funding, financial aid, and admissions to help guide your grad school journey. Find specific program information and detailed resources all in one place to support your application and enrollment decisions.
scholarships.com API
Search and browse the Scholarships.com directory by category — including academic major, residence state, ethnicity, gender, school year, and deadline. Retrieve scholarship listings within any category and subcategory, and fetch full details for individual scholarships including award amounts, eligibility criteria, application deadlines, and application links.
roadmap.sh API
Discover and access structured learning roadmaps, detailed guides, interview questions, and community projects to build your development skills across different technologies and career paths. Search through curated learning content, explore topic breakdowns, and find project ideas tailored to your learning goals.
classforkids.io API
Search and explore kids clubs, classes, camps, and activities across the UK by location or club name. Access schedules, pricing, availability, and direct booking links, with detailed information for each club all in one place.