{"id":20144277,"url":"https://github.com/made2591/covid-postman-collection","last_synced_at":"2025-07-29T14:11:51.390Z","repository":{"id":71122569,"uuid":"250509760","full_name":"made2591/covid-postman-collection","owner":"made2591","description":"A repository with a Postman collection to play with Covid Global API","archived":false,"fork":false,"pushed_at":"2020-03-27T11:35:02.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-02T23:44:12.984Z","etag":null,"topics":["api","covid","postman"],"latest_commit_sha":null,"homepage":"https://github.com/NovelCOVID/API","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/made2591.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-03-27T10:53:13.000Z","updated_at":"2020-03-27T11:35:04.000Z","dependencies_parsed_at":"2023-02-24T00:31:01.593Z","dependency_job_id":null,"html_url":"https://github.com/made2591/covid-postman-collection","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/made2591/covid-postman-collection","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Fcovid-postman-collection","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Fcovid-postman-collection/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Fcovid-postman-collection/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Fcovid-postman-collection/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/made2591","download_url":"https://codeload.github.com/made2591/covid-postman-collection/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/made2591%2Fcovid-postman-collection/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267701319,"owners_count":24130449,"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-07-29T02:00:12.549Z","response_time":2574,"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","covid","postman"],"created_at":"2024-11-13T22:09:30.028Z","updated_at":"2025-07-29T14:11:51.363Z","avatar_url":"https://github.com/made2591.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## Covid Postman Collection \u003c!-- omit in toc --\u003e\n\nThis repository just aims to provide ready-to-import Postman Collection and some examples of use to play with data coming from repository [https://github.com/NovelCOVID/API/](https://github.com/NovelCOVID/API/)\n\n- [Examples](#examples)\n  - [CURL](#curl)\n  - [Javascript](#javascript)\n  - [Python](#python)\n\n### Examples\n\nSome example over API of the Postman API.\n\n#### CURL\n\n|  GET Request  | Output  |\n| ------------ | ------------ |\n| `curl --location --request GET 'https://corona.lmao.ninja/all'` | Returns all total cases, recovery, and deaths. |\n| `curl --location --request GET 'https://corona.lmao.ninja/countries'` | Returns data of all countries that has COVID-19 |\n| `curl --location --request GET 'https://corona.lmao.ninja/countries?sort=country'` | Returns data of each country sorted by the parameter |\n| `curl --location --request GET 'https://corona.lmao.ninja/countries/ITALY'` | Returns data of a specific country. If an exact name match is desired pass ?strict=true in the query string |\n| `curl --location --request GET 'https://corona.lmao.ninja/states'` | Returns all United States of America and their Corona data |\n| `curl --location --request GET 'https://corona.lmao.ninja/v2/historical'` | Get historical data from the start of 2020. (JHU CSSE GISand Data) |\n| `curl --location --request GET 'https://corona.lmao.ninja/v2/historical/ITALY'` | Get historical data from the start of 2020 for a specific country. (JHU CSSE GISand Data) |\n| `curl --location --request GET 'https://corona.lmao.ninja/v2/jhucsse'` | Return data from the Johns Hopkins CSSE Data Repository (Country, province, confirmed, death, recovered) |\n\n#### Javascript\n\nReturns all total cases, recovery, and deaths.\n\n```\nvar request = require('request');\nvar options = {\n  'method': 'GET',\n  'url': 'https://corona.lmao.ninja/all',\n  'headers': {\n  }\n};\nrequest(options, function (error, response) { \n  if (error) throw new Error(error);\n  console.log(response.body);\n});\n```\n\nReturns data of all countries that has COVID-19.\n\n```\nvar request = require('request');\nvar options = {\n  'method': 'GET',\n  'url': 'https://corona.lmao.ninja/countries',\n  'headers': {\n  }\n};\nrequest(options, function (error, response) { \n  if (error) throw new Error(error);\n  console.log(response.body);\n});\n```\n\nReturns data of each country sorted by the parameter.\n\n```\nvar request = require('request');\nvar options = {\n  'method': 'GET',\n  'url': 'https://corona.lmao.ninja/countries?sort=country',\n  'headers': {\n  }\n};\nrequest(options, function (error, response) { \n  if (error) throw new Error(error);\n  console.log(response.body);\n});\n```\n\nReturns data of a specific country. If an exact name match is desired pass ?strict=true in the query string.\n\n```\nvar request = require('request');\nvar options = {\n  'method': 'GET',\n  'url': 'https://corona.lmao.ninja/countries/ITALY',\n  'headers': {\n  }\n};\nrequest(options, function (error, response) { \n  if (error) throw new Error(error);\n  console.log(response.body);\n});\n```\n\nReturns all United States of America and their Corona data.\n\n```\nvar request = require('request');\nvar options = {\n  'method': 'GET',\n  'url': 'https://corona.lmao.ninja/states',\n  'headers': {\n  }\n};\nrequest(options, function (error, response) { \n  if (error) throw new Error(error);\n  console.log(response.body);\n});\n```\n\nGet historical data from the start of 2020. (JHU CSSE GISand Data).\n\n```\nvar request = require('request');\nvar options = {\n  'method': 'GET',\n  'url': 'https://corona.lmao.ninja/v2/jhucsse',\n  'headers': {\n  }\n};\nrequest(options, function (error, response) { \n  if (error) throw new Error(error);\n  console.log(response.body);\n});\n```\n\nGet historical data from the start of 2020 for a specific country. (JHU CSSE GISand Data).\n\n```\nvar request = require('request');\nvar options = {\n  'method': 'GET',\n  'url': 'https://corona.lmao.ninja/v2/historical',\n  'headers': {\n  }\n};\nrequest(options, function (error, response) { \n  if (error) throw new Error(error);\n  console.log(response.body);\n});\n```\n\nReturn data from the Johns Hopkins CSSE Data Repository (Country, province, confirmed, death, recovered).\n\n```\nvar request = require('request');\nvar options = {\n  'method': 'GET',\n  'url': 'https://corona.lmao.ninja/v2/historical/ITALY',\n  'headers': {\n  }\n};\nrequest(options, function (error, response) { \n  if (error) throw new Error(error);\n  console.log(response.body);\n});\n```\n\n#### Python\n\nReturns all total cases, recovery, and deaths.\n\n```\nimport requests\n\nurl = \"https://corona.lmao.ninja/all\"\n\npayload = {}\nheaders= {}\n\nresponse = requests.request(\"GET\", url, headers=headers, data = payload)\n\nprint(response.text.encode('utf8'))\n```\n\nReturns data of all countries that has COVID-19.\n\n```\nimport requests\n\nurl = \"https://corona.lmao.ninja/countries\"\n\npayload = {}\nheaders= {}\n\nresponse = requests.request(\"GET\", url, headers=headers, data = payload)\n\nprint(response.text.encode('utf8'))\n```\n\nReturns data of each country sorted by the parameter.\n\n```\nimport requests\n\nurl = \"https://corona.lmao.ninja/countries?sort=country\"\n\npayload = {}\nheaders= {}\n\nresponse = requests.request(\"GET\", url, headers=headers, data = payload)\n\nprint(response.text.encode('utf8'))\n```\n\nReturns data of a specific country. If an exact name match is desired pass ?strict=true in the query string.\n\n```\nimport requests\n\nurl = \"https://corona.lmao.ninja/countries/ITALY\"\n\npayload = {}\nheaders= {}\n\nresponse = requests.request(\"GET\", url, headers=headers, data = payload)\n\nprint(response.text.encode('utf8'))\n```\n\nReturns all United States of America and their Corona data.\n\n```\nimport requests\n\nurl = \"https://corona.lmao.ninja/states\"\n\npayload = {}\nheaders= {}\n\nresponse = requests.request(\"GET\", url, headers=headers, data = payload)\n\nprint(response.text.encode('utf8'))\n```\n\nGet historical data from the start of 2020. (JHU CSSE GISand Data).\n\n```\nimport requests\n\nurl = \"https://corona.lmao.ninja/v2/jhucsse\"\n\npayload = {}\nheaders= {}\n\nresponse = requests.request(\"GET\", url, headers=headers, data = payload)\n\nprint(response.text.encode('utf8'))\n```\n\nGet historical data from the start of 2020 for a specific country. (JHU CSSE GISand Data).\n\n```\nimport requests\n\nurl = \"https://corona.lmao.ninja/v2/historical\"\n\npayload = {}\nheaders= {}\n\nresponse = requests.request(\"GET\", url, headers=headers, data = payload)\n\nprint(response.text.encode('utf8'))\n```\n\nReturn data from the Johns Hopkins CSSE Data Repository (Country, province, confirmed, death, recovered).\n\n```\nimport requests\n\nurl = \"https://corona.lmao.ninja/v2/historical/ITALY\"\n\npayload = {}\nheaders= {}\n\nresponse = requests.request(\"GET\", url, headers=headers, data = payload)\n\nprint(response.text.encode('utf8'))\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmade2591%2Fcovid-postman-collection","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmade2591%2Fcovid-postman-collection","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmade2591%2Fcovid-postman-collection/lists"}