{"id":37054081,"url":"https://github.com/moviecollection/tv-maze","last_synced_at":"2026-01-14T06:06:20.032Z","repository":{"id":116161055,"uuid":"207162548","full_name":"moviecollection/tv-maze","owner":"moviecollection","description":"The TVMaze API for dotnet.","archived":false,"fork":false,"pushed_at":"2025-10-05T23:47:38.000Z","size":73,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-06T01:18:34.314Z","etag":null,"topics":["api","dotnet","series","tvmaze","wrapper"],"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/moviecollection.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":"2019-09-08T19:27:37.000Z","updated_at":"2025-10-05T23:47:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"4fcd6ffd-cb17-4d2c-b288-ee09e0c65222","html_url":"https://github.com/moviecollection/tv-maze","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/moviecollection/tv-maze","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviecollection%2Ftv-maze","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviecollection%2Ftv-maze/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviecollection%2Ftv-maze/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviecollection%2Ftv-maze/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/moviecollection","download_url":"https://codeload.github.com/moviecollection/tv-maze/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/moviecollection%2Ftv-maze/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28412187,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T05:26:33.345Z","status":"ssl_error","status_checked_at":"2026-01-14T05:21:57.251Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","dotnet","series","tvmaze","wrapper"],"created_at":"2026-01-14T06:06:19.594Z","updated_at":"2026-01-14T06:06:20.028Z","avatar_url":"https://github.com/moviecollection.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TVMaze API\nUnofficial implementation of the TVMaze API for .NET\n\n[![NuGet Version][nuget-shield]][nuget]\n[![NuGet Downloads][nuget-shield-dl]][nuget]\n\n## Installation\nYou can install this package via the `Package Manager Console` in Visual Studio.\n\n```powershell\nInstall-Package MovieCollection.TVMaze -PreRelease\n```\n\n## Configuration\nGet or create a new static `HttpClient` instance if you don't have one already.\n\n```csharp\n// HttpClient lifecycle management best practices:\n// https://learn.microsoft.com/dotnet/fundamentals/networking/http/httpclient-guidelines#recommended-use\nprivate static readonly HttpClient httpClient = new HttpClient();\n```\n\nThen, you need to create the service.\n\n```csharp\n// using MovieCollection.TVMaze;\n\nvar service = new TVMazeService(httpClient);\n```\n\n**Alternatively,** you can create a new `TVMazeOptions` class to set your options.\n\n```csharp\nvar options = new TVMazeOptions\n{\n    ApiKey = \"your-api-key\",\n};\n\nvar service = new TVMazeService(httpClient, options);\n```\n\n## Schedule\nYou can get the tv schedule via the `GetScheduleAsync` method.\n\n```csharp\nvar results = await service.GetScheduleAsync(country: \"GB\");\n```\n\n## Streaming Schedule\nYou can get the streaming schedule via the `GetStreamingScheduleAsync` method.\n\n```csharp\nvar results = await service.GetStreamingScheduleAsync(country: \"US\");\n```\n\nPlease see the demo project for more examples.\n\n## Limitations\n- Premium capabilities has not been implemented.\n- Show Types, Genres, etc. are not strongly typed.\n\n## Notes\n- Please read the [TVMaze][tvmaze]'s [API Licensing][tvmaze-license] and [terms of service][tvmaze-terms] before using their services.\n\n## License\nThis project is licensed under the [MIT License](LICENSE).\n\n[nuget]: https://www.nuget.org/packages/MovieCollection.TVMaze\n[nuget-shield]: https://img.shields.io/nuget/v/MovieCollection.TVMaze.svg?label=NuGet\n[nuget-shield-dl]: https://img.shields.io/nuget/dt/MovieCollection.TVMaze?label=Downloads\u0026color=red\n\n[tvmaze]: https://www.tvmaze.com\n[tvmaze-terms]: https://www.tvmaze.com/site/tos\n[tvmaze-license]: https://www.tvmaze.com/api#licensing\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoviecollection%2Ftv-maze","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmoviecollection%2Ftv-maze","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmoviecollection%2Ftv-maze/lists"}