{"id":25197307,"url":"https://github.com/zaironjacobs/covid19-api","last_synced_at":"2026-05-17T17:32:18.558Z","repository":{"id":173247595,"uuid":"324347741","full_name":"zaironjacobs/covid19-api","owner":"zaironjacobs","description":"COVID-19 API built with FastAPI.","archived":false,"fork":false,"pushed_at":"2022-12-16T08:43:44.000Z","size":83,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-04T16:37:34.151Z","etag":null,"topics":["api","covid19","fastapi","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/zaironjacobs.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}},"created_at":"2020-12-25T11:17:47.000Z","updated_at":"2021-11-21T15:15:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"4d1049e1-bf42-4d17-9010-f7e9c1401168","html_url":"https://github.com/zaironjacobs/covid19-api","commit_stats":null,"previous_names":["zaironjacobs/covid19-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zaironjacobs/covid19-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fcovid19-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fcovid19-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fcovid19-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fcovid19-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zaironjacobs","download_url":"https://codeload.github.com/zaironjacobs/covid19-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaironjacobs%2Fcovid19-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271279105,"owners_count":24731900,"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-20T02:00:09.606Z","response_time":69,"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","covid19","fastapi","python"],"created_at":"2025-02-10T01:52:13.404Z","updated_at":"2026-05-17T17:32:13.508Z","avatar_url":"https://github.com/zaironjacobs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"COVID-19 API\n=================\nCOVID-19 API built with [FastAPI](https://github.com/tiangolo/fastapi).\n\n## Dependencies\n\n- [COVID-19 Data Fetcher](https://github.com/zaironjacobs/covid19-data-fetcher)\n- [MongoDB](https://www.mongodb.com)\n\n### Install \u0026 run\n\nCopy the file config.ini.example to config.ini and fill in the environment variables.\n\n```\npip install -r requirements.txt\npython asgi.py\n```\n\n### Endpoints\n\n/countries/Netherlands:\n\n```\n{\n    \"name\": \"Netherlands\",\n    \"confirmed\": 764907,\n    \"deaths\": 11062,\n    \"last_updated_by_source_at\": \"2020-12-27T05:22:55\"\n}\n```\n\n/countries:\n\n```\n[\n    {\n        \"name\": \"Afghanistan\",\n        \"confirmed\": 50886,\n        \"deaths\": 2149,\n        \"last_updated_by_source_at\": \"2020-12-27T05:22:55\"\n    },\n    {\n        \"name\": \"Albania\",\n        \"confirmed\": 55755,\n        \"deaths\": 1143,\n        \"last_updated_by_source_at\": \"2020-12-27T05:22:55\"\n    },\n    {\n        \"name\": \"Algeria\",\n        \"confirmed\": 97857,\n        \"deaths\": 2722,\n        \"last_updated_by_source_at\": \"2020-12-27T05:22:55\"\n    },\n    \n    .....\n]\n```\n\n/articles:\n\n```\n[\n    {\n    \"title\": \"US CDC says fully vaccinated people need not quarantine after COVID-19 exposure\",\n    \"source_name\": \"CNA\",\n    \"author\": \"CNA\",\n    \"description\": \"WASHINGTON: People who have received the full course of...\",\n    \"url\": \"https://www.channelnewsasia.com/news/world/covid-19-vaccine-no-quarantine-14-days-exposure-us-cdc-14173034\",\n    \"published_at\": \"2021-02-11T12:37:14Z\"\n    },\n    {\n    \"title\": \"US could have averted 40% of Covid deaths, says panel examining Trump's policies (Amanda Holpuch/The Guardian)\",\n    \"source_name\": \"Memeorandum.com\",\n    \"author\": null,\n    \"description\": \"Amanda Holpuch / The Guardian:\\nUS could have averted 40% of Covid...\",\n    \"url\": \"https://www.memeorandum.com/210211/p12\",\n    \"published_at\": \"2021-02-11T12:35:00Z\"\n    },\n    \n    .....\n]\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaironjacobs%2Fcovid19-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzaironjacobs%2Fcovid19-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaironjacobs%2Fcovid19-api/lists"}