{"id":30090730,"url":"https://github.com/doug-murphy/endoflifeapi","last_synced_at":"2025-08-22T19:22:28.852Z","repository":{"id":39746894,"uuid":"421571274","full_name":"Doug-Murphy/EndOfLifeApi","owner":"Doug-Murphy","description":"A web API written in ASP.NET Core to return information regarding end of life .NET target frameworks.","archived":false,"fork":false,"pushed_at":"2023-12-15T00:55:49.000Z","size":113,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2023-12-15T02:35:39.026Z","etag":null,"topics":["end","eol","framework","life","moniker","of","target","tfm"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Doug-Murphy.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}},"created_at":"2021-10-26T20:15:53.000Z","updated_at":"2023-12-15T00:53:58.000Z","dependencies_parsed_at":"2023-11-13T14:52:30.596Z","dependency_job_id":"140d5f9f-f139-4f77-a688-8f017dd84e7c","html_url":"https://github.com/Doug-Murphy/EndOfLifeApi","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"purl":"pkg:github/Doug-Murphy/EndOfLifeApi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Doug-Murphy%2FEndOfLifeApi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Doug-Murphy%2FEndOfLifeApi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Doug-Murphy%2FEndOfLifeApi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Doug-Murphy%2FEndOfLifeApi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Doug-Murphy","download_url":"https://codeload.github.com/Doug-Murphy/EndOfLifeApi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Doug-Murphy%2FEndOfLifeApi/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269542776,"owners_count":24435169,"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-08-09T02:00:10.424Z","response_time":111,"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":["end","eol","framework","life","moniker","of","target","tfm"],"created_at":"2025-08-09T06:44:35.001Z","updated_at":"2025-08-09T06:44:35.476Z","avatar_url":"https://github.com/Doug-Murphy.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\nThe End of Life API is an Azure Functions project written to be a single source of truth that can be used\nprogrammatically to determine whether or not a particular Target Framework Moniker (TFM) is end of life (EOL). It\nprovides a very simple, yet fully feature-encompassing set of endpoints. Both the legacy csproj TFM style (eg. v4.5) and\nthe newer SDK-style csproj TFM style (eg. net45) are supported.\n\n# Endpoints\n\n## /api/check-eol/:tfm\n\nThis endpoint checks if the specific TFM is EOL or not. The TFM argument can be a single TFM or a semicolon-delimited\nlist. If none of the specified TFM's are EOL, this will return 204-No Content. If any of the specified TFM's are EOL,\nthen any EOL TFM of those specified will be returned in a JSON object with an array named `EndOfLifeTargetFrameworks`.\n\nExample: When passing `net45;net6.0` for the TFM.\n\n```json\n{\n    \"EndOfLifeTargetFrameworks\": {\n        \"net45\": \"2016-01-12T00:00:00\"\n    }\n}\n```\n\n## /api/get-all-eol?timeframeUnit=\\\u003cenum\u003e\u0026timeframeAmount=\\\u003cbyte\u003e\n\nThis endpoint will return a JSON object with an array named `EndOfLifeTargetFrameworks` containing all TFM's that are\ncurrently EOL, or will be EOL within the (optional) query-string parameter timeframe. The results are sorted\nalphabetically to provide easier manual parsing.\n\n```json\n{\n    \"EndOfLifeTargetFrameworks\": {\n        \"net11\": \"2011-07-12T00:00:00\",\n        \"net20\": \"2011-07-12T00:00:00\",\n        \"net30\": \"2011-07-12T00:00:00\",\n        \"net40\": \"2016-01-12T00:00:00\",\n        \"net403\": \"2016-01-12T00:00:00\",\n        \"net45\": \"2016-01-12T00:00:00\",\n        \"net451\": \"2016-01-12T00:00:00\",\n        \"netcoreapp1.0\": \"2019-06-27T00:00:00\",\n        \"netcoreapp1.1\": \"2019-06-27T00:00:00\",\n        \"netcoreapp2.0\": \"2018-10-01T00:00:00\",\n        \"netcoreapp2.1\": \"2021-08-21T00:00:00\",\n        \"netcoreapp2.2\": \"2019-12-23T00:00:00\",\n        \"netcoreapp3.0\": \"2020-03-03T00:00:00\",\n        \"v1.1\": \"2011-07-12T00:00:00\",\n        \"v2.0\": \"2011-07-12T00:00:00\",\n        \"v3.0\": \"2011-07-12T00:00:00\",\n        \"v4.0\": \"2016-01-12T00:00:00\",\n        \"v4.0.3\": \"2016-01-12T00:00:00\",\n        \"v4.5\": \"2016-01-12T00:00:00\",\n        \"v4.5.1\": \"2016-01-12T00:00:00\"\n    }\n}\n```\n\n# Usage\nView the [public Postman workspace](https://www.postman.com/HDougMurphy/workspace/end-of-life-api) for the collection of\nendpoints and environments for use.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoug-murphy%2Fendoflifeapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoug-murphy%2Fendoflifeapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoug-murphy%2Fendoflifeapi/lists"}