{"id":32984843,"url":"https://github.com/devsoc-unsw/calendar","last_synced_at":"2026-05-15T08:01:42.829Z","repository":{"id":323183132,"uuid":"1091447059","full_name":"devsoc-unsw/calendar","owner":"devsoc-unsw","description":"A simple API to fetch key UNSW academic calendar dates","archived":false,"fork":false,"pushed_at":"2025-11-08T15:17:59.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-08T17:22:28.583Z","etag":null,"topics":["api","calendar","fastify","notangles","typescript","unsw"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devsoc-unsw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-07T03:02:08.000Z","updated_at":"2025-11-08T15:18:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/devsoc-unsw/calendar","commit_stats":null,"previous_names":["devsoc-unsw/calendar"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/devsoc-unsw/calendar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsoc-unsw%2Fcalendar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsoc-unsw%2Fcalendar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsoc-unsw%2Fcalendar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsoc-unsw%2Fcalendar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devsoc-unsw","download_url":"https://codeload.github.com/devsoc-unsw/calendar/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devsoc-unsw%2Fcalendar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":284170493,"owners_count":26959115,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-13T02:00:06.582Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","calendar","fastify","notangles","typescript","unsw"],"created_at":"2025-11-13T07:00:51.929Z","updated_at":"2025-11-13T07:02:00.964Z","avatar_url":"https://github.com/devsoc-unsw.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# UNSW Academic Calendar API\n\nThis repo contains a basic API to fetch UNSW term dates, scraping for updates on a daily basis directly from UNSW.\n\n## Endpoints\n\n- `GET /v1/dates/:year`: Fetches the term dates for the specified year.\n\n```json5\n// Example response for GET /v1/dates/2025\n{\n  U1: {\n    teaching_period: {\n      start: \"2025-01-06\",\n      end: \"2025-02-07\",\n    },\n    exams: {\n      start: \"2025-02-08\",\n      end: \"2025-02-10\",\n    },\n  },\n  T1: {\n    o_week: {\n      start: \"2025-02-10\",\n      end: \"2025-02-14\",\n    },\n    teaching_period: {\n      start: \"2025-02-17\",\n      end: \"2025-04-24\",\n    },\n    flex_week: {\n      start: \"2025-03-24\",\n      end: \"2025-03-30\",\n    },\n    study_period: {\n      start: \"2025-04-26\",\n      end: \"2025-05-01\",\n    },\n    exams: {\n      start: \"2025-05-02\",\n      end: \"2025-05-15\",\n    },\n  },\n  T2: {\n    o_week: {\n      start: \"2025-05-26\",\n      end: \"2025-05-30\",\n    },\n    teaching_period: {\n      start: \"2025-06-02\",\n      end: \"2025-08-08\",\n    },\n    flex_week: {\n      start: \"2025-07-07\",\n      end: \"2025-07-13\",\n    },\n    study_period: {\n      start: \"2025-08-09\",\n      end: \"2025-08-14\",\n    },\n    exams: {\n      start: \"2025-08-15\",\n      end: \"2025-08-28\",\n    },\n  },\n  T3: {\n    o_week: {\n      start: \"2025-09-08\",\n      end: \"2025-09-12\",\n    },\n    teaching_period: {\n      start: \"2025-09-15\",\n      end: \"2025-11-21\",\n    },\n    flex_week: {\n      start: \"2025-10-20\",\n      end: \"2025-10-26\",\n    },\n    study_period: {\n      start: \"2025-11-22\",\n      end: \"2025-11-27\",\n    },\n    exams: {\n      start: \"2025-11-28\",\n      end: \"2025-12-11\",\n    },\n  },\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsoc-unsw%2Fcalendar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevsoc-unsw%2Fcalendar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevsoc-unsw%2Fcalendar/lists"}