{"info":{"_postman_id":"d5fb8837-e3f6-4146-9067-a8e358b16fc1","name":"CovidCountyData","description":"<html><head></head><body><h1 id=\"rest-api\">Rest API</h1>\n<p>The REST API does not require any software to be installed on your computer, it allows you to\ninteract with our data through standard web protocols.</p>\n<p>Our API is build using <a href=\"http://postgrest.org/en/v7.0.0/\">PostgREST</a>. For more information on the\ndifferent features of this API, please see their <a href=\"http://postgrest.org/en/v7.0.0/api.html\">documentation</a>.</p>\n<h2 id=\"api-key\">API Key</h2>\n<p>Our data is free and open for anyone to use (and always will be). Our team agreed that this was central to our mission when we agreed to begin this project. However, we do find it useful to have information about our users and to see how they use the data for two reasons:</p>\n<ol>\n<li>It helps us focus and improve the datasets that are seeing the most use.</li>\n<li>The number of users, as measured by active API keys, is one metric that we use to show that the\nproject is useful when we are discussing additional grant funding.</li>\n</ol>\n<p>We are grateful to everyone who is willing to register for and use their API key when interacting\nwith our data.</p>\n<p>To register for an API key, see the registration form <a href=\"https://covidcountydata.org#register\">on our home page</a>.</p>\n<p>After obtaining an API key, please attach it as either the <code>apikey</code> header or query parameter in future requests</p>\n<p>For example, if my API key were <code>abc123</code> and I was getting data from <code>https://api.covidcountydata.org/covid_us?fips=eq.6</code>, I\nwould adjust the url to be <code>https://api.covidcountydata.org/covid_us?fips=eq.6&amp;apikey=abc123</code></p>\n<h2 id=\"request-structure\">Request structure</h2>\n<p>In order to be able to request data, you will need to know which endpoint the data comes from and,\noptionally, which filters you would like to apply to the data before it's delivered:</p>\n<p><strong>API Endpoints</strong></p>\n<p>The data in our database is broken into tables of related information with a separate endpoint for\neach table. For example, all of the U.S. COVID-19 related data is stored in the <code>covid_us</code> table\nand it has a corresponding endpoint of <code>https://api.covid.valorum.ai/covid_us</code>. For a complete\nlist of the available endpoints, see the interactive playground near the bottom of the page.</p>\n<p><strong>Filters</strong></p>\n<p>There are a two types of parameters that can be included as filters:</p>\n<ul>\n<li><em>Data parameters</em>: Data parameters are used to select subsets of the data by performing some\ntype of comparison between the parameter argument and the data.</li>\n<li><em>Keyword parameters</em>: Keyword parameters interact with how the data is returned. For example,\n<code>select</code> can modify which columns are returned, <code>order</code> changes how the data is ordered when it\nis returned, and <code>limit</code> changes the number of observations returned.</li>\n</ul>\n<p>The data parameters that you are able to apply will depend on what columns are available in a\nparticular dataset. Many of the tables will have the columns <code>dt</code> (date of the obervation),\n<code>location</code> (a geographical identifier, for the U.S. this is often the fips code), <code>variable</code> (name\nof the variable being observed), and <code>value</code> (the value of the variable in that location at that\ntime).</p>\n<p>For example, if you wanted to request 5 observations of the <code>tests_total</code> variable from after\nAugust 1, 2020 then you would use the following query:</p>\n<p><code>https://api.covid.valorum.ai/covid_us?dt=gt.2020-08-01&amp;variable=eq.tests_total&amp;limit=5</code></p>\n<p>Of course, rather than input this address into your browser, you could query the API for this\ninformation using a more generic tool such as <code>curl</code> or <code>javascript</code>.</p>\n<p>We make two additional observations:</p>\n<ol>\n<li>Rather than use <code>&gt;</code>, <code>&lt;</code>, <code>=</code>, etc..., the REST API expects you to use <code>gt.</code>, <code>lt.</code>, <code>eq.</code>,\netc... For a complete list of comparisons, see <a href=\"http://postgrest.org/en/v7.0.0/api.html#operators\">PostgREST documentation</a></li>\n<li>Much of the data is stored in <em>long form</em> rather than <em>wide form</em>. In long form each data\n  observation, or value, is associated with its unique identifiers. For example, in many of our\n  datasets the identifiers are <code>dt</code>, <code>location</code>, and <code>variable</code>, and the value of the observation\n  is stored in <code>value</code>. This can be seen in the example section below.</li>\n</ol>\n<h3 id=\"examples\">Examples</h3>\n<p>We will do some examples to illustrate these points using the example table below. We will demonstrate\nthe example api requests using the <code>covid_us</code> endpoint (at <a href=\"https://api.covidcountydata.org/covid_us\">https://api.covidcountydata.org/covid_us</a>),\nbut the same concepts apply to all endpoints. Note that we will add <code>limit=20</code> to most of the requests\nbelow to prevent unnecessary data transfer, but removing this query parameter will allow you to fetch the\nwhole dataset. Finally, note also that we'll use the same <code>apikey=abc123</code> argument as shown in the\nexample above, but the <code>abc123</code> should be replaced by your API key.</p>\n<p>Below is an example table showing the structure of the data returned by the <code>covid_us</code> endpoint:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>dt</th>\n<th>fips</th>\n<th>variable</th>\n<th>value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2020-06-01</td>\n<td>6</td>\n<td>deaths_total</td>\n<td>4251</td>\n</tr>\n<tr>\n<td>2020-06-01</td>\n<td>12</td>\n<td>deaths_total</td>\n<td>2543</td>\n</tr>\n<tr>\n<td>2020-06-01</td>\n<td>48</td>\n<td>deaths_total</td>\n<td>1678</td>\n</tr>\n<tr>\n<td>2020-06-02</td>\n<td>6</td>\n<td>deaths_total</td>\n<td>4286</td>\n</tr>\n<tr>\n<td>2020-06-02</td>\n<td>12</td>\n<td>deaths_total</td>\n<td>2613</td>\n</tr>\n<tr>\n<td>2020-06-02</td>\n<td>48</td>\n<td>deaths_total</td>\n<td>1698</td>\n</tr>\n<tr>\n<td>2020-06-01</td>\n<td>6</td>\n<td>positive_tests_total</td>\n<td>113006</td>\n</tr>\n<tr>\n<td>2020-06-01</td>\n<td>12</td>\n<td>positive_tests_total</td>\n<td>56830</td>\n</tr>\n<tr>\n<td>2020-06-01</td>\n<td>48</td>\n<td>positive_tests_total</td>\n<td>64880</td>\n</tr>\n<tr>\n<td>2020-06-02</td>\n<td>6</td>\n<td>positive_tests_total</td>\n<td>115310</td>\n</tr>\n<tr>\n<td>2020-06-02</td>\n<td>12</td>\n<td>positive_tests_total</td>\n<td>57447</td>\n</tr>\n<tr>\n<td>2020-06-02</td>\n<td>48</td>\n<td>positive_tests_total</td>\n<td>66568</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"only-data-from-ca\">Only data from CA</h3>\n<p>In order to select data from only California (fips code 06) we filter the parameter <code>location</code> to\nonly be 6</p>\n<p><code>https://api.covid.valorum.ai/covid_us?fips=eq.06&amp;limit=20&amp;apikey=abc123</code></p>\n<h3 id=\"only-observations-with-more-than-100000-tests\">Only observations with more than 100,000 tests</h3>\n<p>In order to only select observations with more than 100,000 tests, we would want to use the following parameters</p>\n<p><code>https://api.covid.valorum.ai/covid_us?variable=eq.positive_tests_total&amp;value=gt.100000&amp;limit=20&amp;apikey=abc123</code></p>\n<h3 id=\"only-observations-after-june-1-2020\">Only observations after June 1, 2020</h3>\n<p>In order to only select the data from after June 1, 2020, we would use the following parameter</p>\n<p><code>https://api.covid.valorum.ai/covid_us?dt=gt.2020-06-01&amp;limit=20&amp;apikey=abc123</code></p>\n<h3 id=\"select-total-deaths-for-texas-ordered-by-date\">Select total deaths for Texas ordered by date</h3>\n<p>In order to select only the total deaths variable for Texas and have the results be ordered by date, we would use the following parameters</p>\n<p><code>https://api.covid.valorum.ai/covid_us?location=eq.48&amp;variable=eq.positive_tests_total&amp;order=dt&amp;limit=20&amp;apikey=abc123</code></p>\n<h2 id=\"software\">Software</h2>\n<p>We use the following open source technologies to build this API.</p>\n<ul>\n<li>The data is hosted in a <a href=\"https://www.postgresql.org/\">PostgreSQL database</a></li>\n<li>The API is built using <a href=\"http://postgrest.org/en/v7.0.0/\">PostgREST</a></li>\n<li>The documentation is generated using <a href=\"https://mrin9.github.io/RapiDoc/\">RapiDoc</a>.</li>\n</ul>\n<p>We are grateful to all of these projects for simplifying the task of building, deploying, and\ndocumenting our API. We are also grateful to Google Cloud for helping us host and distribute our\ndata.</p>\n<h2 id=\"api-endpoints\">API Endpoints</h2>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Rest API","slug":"rest-api"}],"owner":"10122604","collectionId":"d5fb8837-e3f6-4146-9067-a8e358b16fc1","publishedId":"TVCe29D4","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-09-01T12:45:00.000Z"},"item":[{"name":"covid_global","id":"95c3022c-840d-4210-bce2-cc745f9db952","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/covid_global?iso_code=eq.GBR&dt=gt.2020-07-20&limit=10","description":"<p>This table contains the complete Our World in Data's COVID-19 dataset. Please see the <a href=\"https://ourworldindata.org/coronavirus-data\">original source</a> for more information.</p>\n<p>All of Our World in Data is completely open access and all work is licensed under the Creative Commons BY license. You have the permission to use, distribute, and reproduce in any medium, provided the source and authors are credited.</p>\n<p>This data has been collected, aggregated, and documented by Diana Beltekian, Daniel Gavrilov, Charlie Giattino, Joe Hasell, Bobbie Macdonald, Edouard Mathieu, Esteban Ortiz-Ospina, Hannah Ritchie, Max Roser.</p>\n<p>The mission of <em>Our World in Data</em> is to make data and research on the world’s largest problems understandable and accessible. <a href=\"https://ourworldindata.org/about\">Read more about our mission</a>.</p>\n<p>The following documentation is taken from the Our World in Data <a href=\"https://ourworldindata.org/coronavirus-data\">COVID-19 page</a> and the corresponding <a href=\"https://github.com/owid/covid-19-data/tree/master/public/data\">GitHub repository</a>:</p>\n<p>The complete COVID-19 dataset is a collection of the COVID-19 data maintained by Our World in Data. It is updated daily and includes data on confirmed cases, deaths, and testing, as well as other variables of potential interest.</p>\n<ul>\n<li><strong>Confirmed cases and deaths:</strong> our data comes from the <a href=\"https://www.ecdc.europa.eu/en/publications-data/download-todays-data-geographic-distribution-covid-19-cases-worldwide\">European Centre for Disease Prevention and Control</a> (ECDC). We discuss how and when the ECDC collects and publishes this data <a href=\"https://ourworldindata.org/coronavirus-source-data\">here</a>. The cases &amp; deaths dataset is updated daily. <em>Note: the number of cases or deaths reported by any institution—including the ECDC, the WHO, Johns Hopkins and others—on a given day does not necessarily represent the actual number on that date. This is because of the long reporting chain that exists between a new case/death and its inclusion in statistics. This also means that negative values in cases and deaths can sometimes appear when a country sends a correction to the ECDC, because it had previously overestimated the number of cases/deaths.</em></li>\n<li><strong>Testing for COVID-19:</strong> this data is collected by the <em>Our World in Data</em> team from official reports; you can find further details in our post on COVID-19 testing, including our <a href=\"https://ourworldindata.org/coronavirus-testing#our-checklist-for-covid-19-testing-data\">checklist of questions to understand testing data</a>, information on <a href=\"https://ourworldindata.org/coronavirus-testing#which-countries-do-we-have-testing-data-for\">geographical and temporal coverage</a>, and <a href=\"https://ourworldindata.org/coronavirus-testing#our-checklist-for-covid-19-testing-data\">detailed country-by-country source information</a>. The testing dataset is updated around twice a week.</li>\n<li><strong>Other variables:</strong> this data is collected from a variety of sources (United Nations, World Bank, Global Burden of Disease, Blavatnik School of Government, etc.). More information is available in <a href=\"https://github.com/owid/covid-19-data/tree/master/public/data/owid-covid-data-codebook.md\">our codebook</a>.</li>\n</ul>\n","urlObject":{"path":["covid_global"],"host":["https://api.covidcountydata.org"],"query":[{"description":{"content":"<p>ISO 3166-1 alpha-3 – three-letter country codes|International Organization for Standardization</p>\n","type":"text/plain"},"key":"iso_code","value":"eq.GBR"},{"disabled":true,"description":{"content":"<p>Continent of the geographical location|Our World in Data</p>\n","type":"text/plain"},"key":"continent","value":"<text>"},{"disabled":true,"description":{"content":"<p>Geographical location|Our World in Data</p>\n","type":"text/plain"},"key":"location","value":"<text>"},{"description":{"content":"<p>Date of observation|Our World in Data</p>\n","type":"text/plain"},"key":"dt","value":"gt.2020-07-20"},{"disabled":true,"description":{"content":"<p>Total confirmed cases of COVID-19|European Centre for Disease Prevention and Control</p>\n","type":"text/plain"},"key":"total_cases","value":"<integer>"},{"disabled":true,"description":{"content":"<p>New confirmed cases of COVID-19|European Centre for Disease Prevention and Control</p>\n","type":"text/plain"},"key":"new_cases","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Total deaths attributed to COVID-19|European Centre for Disease Prevention and Control</p>\n","type":"text/plain"},"key":"total_deaths","value":"<integer>"},{"disabled":true,"description":{"content":"<p>New deaths attributed to COVID-19|European Centre for Disease Prevention and Control</p>\n","type":"text/plain"},"key":"new_deaths","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Total confirmed cases of COVID-19 per 1,000,000 people|European Centre for Disease Prevention and Control</p>\n","type":"text/plain"},"key":"total_cases_per_million","value":"<real>"},{"disabled":true,"description":{"content":"<p>New confirmed cases of COVID-19 per 1,000,000 people|European Centre for Disease Prevention and Control</p>\n","type":"text/plain"},"key":"new_cases_per_million","value":"<real>"},{"disabled":true,"description":{"content":"<p>Total deaths attributed to COVID-19 per 1,000,000 people|European Centre for Disease Prevention and Control</p>\n","type":"text/plain"},"key":"total_deaths_per_million","value":"<real>"},{"disabled":true,"description":{"content":"<p>New deaths attributed to COVID-19 per 1,000,000 people|European Centre for Disease Prevention and Control</p>\n","type":"text/plain"},"key":"new_deaths_per_million","value":"<real>"},{"disabled":true,"description":{"content":"<p>Total tests for COVID-19|National government reports</p>\n","type":"text/plain"},"key":"total_tests","value":"<integer>"},{"disabled":true,"description":{"content":"<p>New tests for COVID-19|National government reports</p>\n","type":"text/plain"},"key":"new_tests","value":"<integer>"},{"disabled":true,"description":{"content":"<p>ew tests for COVID-19 (7-day smoothed). For countries that do not report testing data on a daily basis, we assume that testing changed equally on a daily basis over any periods in which no data was reported. This produces a complete series of daily figures, which is then averaged over a rolling 7-day window|National government reports</p>\n","type":"text/plain"},"key":"new_tests_smoothed","value":"<real>"},{"disabled":true,"description":{"content":"<p>Total tests for COVID-19 per 1,000 people|National government reports</p>\n","type":"text/plain"},"key":"total_tests_per_thousand","value":"<real>"},{"disabled":true,"description":{"content":"<p>New tests for COVID-19 per 1,000 people|National government reports</p>\n","type":"text/plain"},"key":"new_tests_per_thousand","value":"<real>"},{"disabled":true,"description":{"content":"<p>New tests for COVID-19 (7-day smoothed) per 1,000 people|National government reports</p>\n","type":"text/plain"},"key":"new_tests_smoothed_per_thousand","value":"<real>"},{"disabled":true,"description":{"content":"<p>Units used by the location to report its testing data|National government reports</p>\n","type":"text/plain"},"key":"tests_units","value":"<text>"},{"disabled":true,"description":{"content":"<p>Government Response Stringency Index: composite measure based on 9 response indicators including school closures, workplace closures, and travel bans, rescaled to a value from 0 to 100 (100 = strictest response)|Oxford COVID-19 Government Response Tracker, Blavatnik School of Government</p>\n","type":"text/plain"},"key":"stringency_index","value":"<real>"},{"disabled":true,"description":{"content":"<p>Population in 2020|United Nations, Department of Economic and Social Affairs, Population Division, World Population Prospects: The 2019 Revision</p>\n","type":"text/plain"},"key":"population","value":"<real>"},{"disabled":true,"description":{"content":"<p>Number of people divided by land area, measured in square kilometers, most recent year available|World Bank – World Development Indicators, sourced from Food and Agriculture Organization and World Bank estimates</p>\n","type":"text/plain"},"key":"population_density","value":"<real>"},{"disabled":true,"description":{"content":"<p>Median age of the population, UN projection for 2020|UN Population Division, World Population Prospects, 2017 Revision</p>\n","type":"text/plain"},"key":"median_age","value":"<real>"},{"disabled":true,"description":{"content":"<p>hare of the population that is 65 years and older, most recent year available|World Bank – World Development Indicators, based on age/sex distributions of United Nations Population Division's World Population Prospects: 2017 Revision</p>\n","type":"text/plain"},"key":"aged_65_older","value":"<real>"},{"disabled":true,"description":{"content":"<p>Share of the population that is 70 years and older in 2015|United Nations, Department of Economic and Social Affairs, Population Division (2017), World Population Prospects: The 2017 Revision</p>\n","type":"text/plain"},"key":"aged_70_older","value":"<real>"},{"disabled":true,"description":{"content":"<p>Gross domestic product at purchasing power parity (constant 2011 international dollars), most recent year available|World Bank – World Development Indicators, source from World Bank, International Comparison Program database</p>\n","type":"text/plain"},"key":"gdp_per_capita","value":"<real>"},{"disabled":true,"description":{"content":"<p>Share of the population living in extreme poverty, most recent year available since 2010|World Bank – World Development Indicators, sourced from World Bank Development Research Group</p>\n","type":"text/plain"},"key":"extreme_poverty","value":"<real>"},{"disabled":true,"description":{"content":"<p>Death rate from cardiovascular disease in 2017|Global Burden of Disease Collaborative Network, Global Burden of Disease Study 2017 Results</p>\n","type":"text/plain"},"key":"cvd_death_rate","value":"<real>"},{"disabled":true,"description":{"content":"<p>Diabetes prevalence (% of population aged 20 to 79) in 2017|World Bank – World Development Indicators, sourced from International Diabetes Federation, Diabetes Atlas</p>\n","type":"text/plain"},"key":"diabetes_prevalence","value":"<real>"},{"disabled":true,"description":{"content":"<p>Share of women who smoke, most recent year available|World Bank – World Development Indicators, sourced from World Health Organization, Global Health Observatory Data Repository</p>\n","type":"text/plain"},"key":"female_smokers","value":"<real>"},{"disabled":true,"description":{"content":"<p>Share of men who smoke, most recent year available|World Bank – World Development Indicators, sourced from World Health Organization, Global Health Observatory Data Repository</p>\n","type":"text/plain"},"key":"male_smokers","value":"<real>"},{"disabled":true,"description":{"content":"<p>Share of the population with basic handwashing facilities on premises, most recent year available|United Nations Statistics Division</p>\n","type":"text/plain"},"key":"handwashing_facilities","value":"<real>"},{"disabled":true,"description":{"content":"<p>Hospital beds per 1,000 people, most recent year available since 2010|OECD, Eurostat, World Bank, national government records and other sources</p>\n","type":"text/plain"},"key":"hospital_beds_per_thousand","value":"<real>"},{"disabled":true,"description":{"content":"<p>Life expectancy at birth in 2019|James C. Riley, Clio Infra, United Nations Population Division</p>\n","type":"text/plain"},"key":"life_expectancy","value":"<real>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[{"id":"1ca9534a-29ce-4297-b1e3-a8d26492718d","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/covid_global?iso_code=<text>&continent=<text>&location=<text>&dt=<date>&total_cases=<integer>&new_cases=<integer>&total_deaths=<integer>&new_deaths=<integer>&total_cases_per_million=<real>&new_cases_per_million=<real>&total_deaths_per_million=<real>&new_deaths_per_million=<real>&total_tests=<integer>&new_tests=<integer>&new_tests_smoothed=<real>&total_tests_per_thousand=<real>&new_tests_per_thousand=<real>&new_tests_smoothed_per_thousand=<real>&tests_units=<text>&stringency_index=<real>&population=<real>&population_density=<real>&median_age=<real>&aged_65_older=<real>&aged_70_older=<real>&gdp_per_capita=<real>&extreme_poverty=<real>&cvd_death_rate=<real>&diabetes_prevalence=<real>&female_smokers=<real>&male_smokers=<real>&handwashing_facilities=<real>&hospital_beds_per_thousand=<real>&life_expectancy=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["covid_global"],"query":[{"key":"iso_code","value":"<text>"},{"key":"continent","value":"<text>"},{"key":"location","value":"<text>"},{"key":"dt","value":"<date>"},{"key":"total_cases","value":"<integer>"},{"key":"new_cases","value":"<integer>"},{"key":"total_deaths","value":"<integer>"},{"key":"new_deaths","value":"<integer>"},{"key":"total_cases_per_million","value":"<real>"},{"key":"new_cases_per_million","value":"<real>"},{"key":"total_deaths_per_million","value":"<real>"},{"key":"new_deaths_per_million","value":"<real>"},{"key":"total_tests","value":"<integer>"},{"key":"new_tests","value":"<integer>"},{"key":"new_tests_smoothed","value":"<real>"},{"key":"total_tests_per_thousand","value":"<real>"},{"key":"new_tests_per_thousand","value":"<real>"},{"key":"new_tests_smoothed_per_thousand","value":"<real>"},{"key":"tests_units","value":"<text>"},{"key":"stringency_index","value":"<real>"},{"key":"population","value":"<real>"},{"key":"population_density","value":"<real>"},{"key":"median_age","value":"<real>"},{"key":"aged_65_older","value":"<real>"},{"key":"aged_70_older","value":"<real>"},{"key":"gdp_per_capita","value":"<real>"},{"key":"extreme_poverty","value":"<real>"},{"key":"cvd_death_rate","value":"<real>"},{"key":"diabetes_prevalence","value":"<real>"},{"key":"female_smokers","value":"<real>"},{"key":"male_smokers","value":"<real>"},{"key":"handwashing_facilities","value":"<real>"},{"key":"hospital_beds_per_thousand","value":"<real>"},{"key":"life_expectancy","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"aged_65_older\": \"<real>\",\n  \"aged_70_older\": \"<real>\",\n  \"continent\": \"<text>\",\n  \"cvd_death_rate\": \"<real>\",\n  \"diabetes_prevalence\": \"<real>\",\n  \"dt\": \"<date>\",\n  \"extreme_poverty\": \"<real>\",\n  \"female_smokers\": \"<real>\",\n  \"gdp_per_capita\": \"<real>\",\n  \"handwashing_facilities\": \"<real>\",\n  \"hospital_beds_per_thousand\": \"<real>\",\n  \"iso_code\": \"<text>\",\n  \"life_expectancy\": \"<real>\",\n  \"location\": \"<text>\",\n  \"male_smokers\": \"<real>\",\n  \"median_age\": \"<real>\",\n  \"new_cases\": \"<integer>\",\n  \"new_cases_per_million\": \"<real>\",\n  \"new_deaths\": \"<integer>\",\n  \"new_deaths_per_million\": \"<real>\",\n  \"new_tests\": \"<integer>\",\n  \"new_tests_per_thousand\": \"<real>\",\n  \"new_tests_smoothed\": \"<real>\",\n  \"new_tests_smoothed_per_thousand\": \"<real>\",\n  \"population\": \"<real>\",\n  \"population_density\": \"<real>\",\n  \"stringency_index\": \"<real>\",\n  \"tests_units\": \"<text>\",\n  \"total_cases\": \"<integer>\",\n  \"total_cases_per_million\": \"<real>\",\n  \"total_deaths\": \"<integer>\",\n  \"total_deaths_per_million\": \"<real>\",\n  \"total_tests\": \"<integer>\",\n  \"total_tests_per_thousand\": \"<real>\"\n },\n {\n  \"aged_65_older\": \"<real>\",\n  \"aged_70_older\": \"<real>\",\n  \"continent\": \"<text>\",\n  \"cvd_death_rate\": \"<real>\",\n  \"diabetes_prevalence\": \"<real>\",\n  \"dt\": \"<date>\",\n  \"extreme_poverty\": \"<real>\",\n  \"female_smokers\": \"<real>\",\n  \"gdp_per_capita\": \"<real>\",\n  \"handwashing_facilities\": \"<real>\",\n  \"hospital_beds_per_thousand\": \"<real>\",\n  \"iso_code\": \"<text>\",\n  \"life_expectancy\": \"<real>\",\n  \"location\": \"<text>\",\n  \"male_smokers\": \"<real>\",\n  \"median_age\": \"<real>\",\n  \"new_cases\": \"<integer>\",\n  \"new_cases_per_million\": \"<real>\",\n  \"new_deaths\": \"<integer>\",\n  \"new_deaths_per_million\": \"<real>\",\n  \"new_tests\": \"<integer>\",\n  \"new_tests_per_thousand\": \"<real>\",\n  \"new_tests_smoothed\": \"<real>\",\n  \"new_tests_smoothed_per_thousand\": \"<real>\",\n  \"population\": \"<real>\",\n  \"population_density\": \"<real>\",\n  \"stringency_index\": \"<real>\",\n  \"tests_units\": \"<text>\",\n  \"total_cases\": \"<integer>\",\n  \"total_cases_per_million\": \"<real>\",\n  \"total_deaths\": \"<integer>\",\n  \"total_deaths_per_million\": \"<real>\",\n  \"total_tests\": \"<integer>\",\n  \"total_tests_per_thousand\": \"<real>\"\n }\n]"},{"id":"e894cd8f-9588-4507-9573-db33a6d5cfcd","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/covid_global?iso_code=<text>&continent=<text>&location=<text>&dt=<date>&total_cases=<integer>&new_cases=<integer>&total_deaths=<integer>&new_deaths=<integer>&total_cases_per_million=<real>&new_cases_per_million=<real>&total_deaths_per_million=<real>&new_deaths_per_million=<real>&total_tests=<integer>&new_tests=<integer>&new_tests_smoothed=<real>&total_tests_per_thousand=<real>&new_tests_per_thousand=<real>&new_tests_smoothed_per_thousand=<real>&tests_units=<text>&stringency_index=<real>&population=<real>&population_density=<real>&median_age=<real>&aged_65_older=<real>&aged_70_older=<real>&gdp_per_capita=<real>&extreme_poverty=<real>&cvd_death_rate=<real>&diabetes_prevalence=<real>&female_smokers=<real>&male_smokers=<real>&handwashing_facilities=<real>&hospital_beds_per_thousand=<real>&life_expectancy=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["covid_global"],"query":[{"key":"iso_code","value":"<text>"},{"key":"continent","value":"<text>"},{"key":"location","value":"<text>"},{"key":"dt","value":"<date>"},{"key":"total_cases","value":"<integer>"},{"key":"new_cases","value":"<integer>"},{"key":"total_deaths","value":"<integer>"},{"key":"new_deaths","value":"<integer>"},{"key":"total_cases_per_million","value":"<real>"},{"key":"new_cases_per_million","value":"<real>"},{"key":"total_deaths_per_million","value":"<real>"},{"key":"new_deaths_per_million","value":"<real>"},{"key":"total_tests","value":"<integer>"},{"key":"new_tests","value":"<integer>"},{"key":"new_tests_smoothed","value":"<real>"},{"key":"total_tests_per_thousand","value":"<real>"},{"key":"new_tests_per_thousand","value":"<real>"},{"key":"new_tests_smoothed_per_thousand","value":"<real>"},{"key":"tests_units","value":"<text>"},{"key":"stringency_index","value":"<real>"},{"key":"population","value":"<real>"},{"key":"population_density","value":"<real>"},{"key":"median_age","value":"<real>"},{"key":"aged_65_older","value":"<real>"},{"key":"aged_70_older","value":"<real>"},{"key":"gdp_per_capita","value":"<real>"},{"key":"extreme_poverty","value":"<real>"},{"key":"cvd_death_rate","value":"<real>"},{"key":"diabetes_prevalence","value":"<real>"},{"key":"female_smokers","value":"<real>"},{"key":"male_smokers","value":"<real>"},{"key":"handwashing_facilities","value":"<real>"},{"key":"hospital_beds_per_thousand","value":"<real>"},{"key":"life_expectancy","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"95c3022c-840d-4210-bce2-cc745f9db952"},{"name":"covid_historical","id":"e525a5ba-7880-43ed-bea9-5d99698b333a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/covid_historical?vintage=eq.2020-08-25&limit=12","description":"<p>This table contains relevant information on COVID-19</p>\n<p>This table returns all vintages (data from different collection dates) of data in our system.</p>\n<p>For only the most recent data, please use the <code>covid</code> endpoint.</p>\n<p>Currently, the following variables are collected in the database</p>\n<ul>\n<li><code>cases_suspected</code>: Total number of suspected cases</li>\n<li><code>cases_confirmed</code>: Total number of confirmed cases</li>\n<li><code>cases_total</code>: The number of suspected or confirmed cases</li>\n<li><code>deaths_suspected</code>: The number of deaths that are suspected to have been caused by COVID-19</li>\n<li><code>deaths_confirmed</code>: The number of deaths that are confirmed to have been caused by COVID-19</li>\n<li><code>deaths_total</code>: The number of deaths that are either suspected or confirmed to have been caused by COVID-19</li>\n<li><code>positive_tests_total</code>: The total number of tests that have been positive</li>\n<li><code>negative_tests_total</code>: The total number of tests that have been negative</li>\n<li><code>icu_beds_capacity_count</code>: The number of ICU beds available in the geography</li>\n<li><code>icu_beds_in_use_any</code>: The number of ICU beds currently in use</li>\n<li><code>icu_beds_in_use_covid_suspected</code>: The number of ICU beds currently in use by a patient suspected of COVID-19</li>\n<li><code>icu_beds_in_use_covid_confirmed</code>: The number of ICU beds currently in use by a patient confirmed to have COVID-19</li>\n<li><code>icu_beds_in_use_covid_total</code>: The number of ICU beds currently in use by a patient who is suspected of having or confirmed to have COVID-19</li>\n<li><code>icu_beds_in_use_covid_new</code>: The number of ICU beds occupied by an individual suspected or confirmed of having COVID-19 that have been admitted today</li>\n<li><code>hospital_beds_capacity_count</code>: The number of hospital beds available in the geography</li>\n<li><code>hospital_beds_in_use_any</code>: The number of hospital beds currently in use</li>\n<li><code>hospital_beds_in_use_covid_suspected</code>: The number of hospital beds currently in use by a patient suspected of COVID-19</li>\n<li><code>hospital_beds_in_use_covid_confirmed</code>: The number of hospital beds currently in use by a patient confirmed to have COVID-19</li>\n<li><code>hospital_beds_in_use_covid_total</code>: The number of hospital beds currently in use by a patient who is suspected of having or confirmed to have COVID-19</li>\n<li><code>hospital_beds_in_use_covid_new</code>: The number of hospital beds occupied by an individual suspected or confirmed of having COVID-19 that have been admitted today</li>\n<li><code>ventilators_capacity_count</code>: The number of individuals who can be supported by a ventilator</li>\n<li><code>ventilators_in_use_any</code>: The number of individuals who are currently on a ventilator</li>\n<li><code>ventilators_in_use_covid_suspected</code>: The number of individuals who are suspected of having COVID-19 that are currently on a ventilator</li>\n<li><code>ventilators_in_use_covid_confirmed</code>: The number of individuals who are confirmed to have COVID-19 that are currently on a ventilator</li>\n<li><code>ventilators_in_use_covid_total</code>: The number of individuals who are either suspected of having or confirmed to have COVID-19 that are on a ventilator</li>\n<li><code>ventilators_in_use_covid_new</code>: The number of ventilators that are currently on a ventilator that are suspected of having or confirmed to have COVID-19 that started the ventilator today</li>\n<li><code>recovered_total</code>: The number of individuals who tested positive for COVID-19 and no longer test positive</li>\n<li><code>active_total</code>: The number of currently active COVID-19 cases</li>\n</ul>\n<p>These variables are only collected from official US federal/state/county government sources or redistributed from reputable sources like CovidTracking Project, USAFacts, and the New York Times.</p>\n","urlObject":{"path":["covid_historical"],"host":["https://api.covidcountydata.org"],"query":[{"description":{"content":"<p>The date/time the data was collected and stored in our database</p>\n","type":"text/plain"},"key":"vintage","value":"eq.2020-08-25"},{"disabled":true,"description":{"content":"<p>The date that corresponds to the observed variable</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"disabled":true,"description":{"content":"<p>The fips code</p>\n","type":"text/plain"},"key":"fips","value":"<integer>"},{"disabled":true,"description":{"content":"<p>One of the variables described in the table description</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the variable</p>\n","type":"text/plain"},"key":"value","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"12"}],"variable":[]}},"response":[{"id":"331e7e34-0cd1-4a81-8d5c-e3ea34f2a2d0","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/covid_historical?vintage=<date>&dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["covid_historical"],"query":[{"key":"vintage","value":"<date>"},{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\",\n  \"vintage\": \"<date>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\",\n  \"vintage\": \"<date>\"\n }\n]"},{"id":"82473018-f5f8-46b2-80ac-efe78808b43a","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/covid_historical?vintage=<date>&dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["covid_historical"],"query":[{"key":"vintage","value":"<date>"},{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e525a5ba-7880-43ed-bea9-5d99698b333a"},{"name":"covid_us","id":"cba148e0-1542-47a6-af52-a47536e281ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/covid_us?dt=gt.2020-08-26&limit=10","description":"<p>This table contains relevant information on COVID-19</p>\n<p>This table only includes the most recent observation for each date, location, and variable.</p>\n<p>For a full history of all data we have collected see <code>covid_historical</code></p>\n<p>Currently, the following variables are collected in the database</p>\n<ul>\n<li><code>cases_suspected</code>: Total number of suspected cases</li>\n<li><code>cases_confirmed</code>: Total number of confirmed cases</li>\n<li><code>cases_total</code>: The number of suspected or confirmed cases</li>\n<li><code>deaths_suspected</code>: The number of deaths that are suspected to have been caused by COVID-19</li>\n<li><code>deaths_confirmed</code>: The number of deaths that are confirmed to have been caused by COVID-19</li>\n<li><code>deaths_total</code>: The number of deaths that are either suspected or confirmed to have been caused by COVID-19</li>\n<li><code>positive_tests_total</code>: The total number of tests that have been positive</li>\n<li><code>negative_tests_total</code>: The total number of tests that have been negative</li>\n<li><code>icu_beds_capacity_count</code>: The number of ICU beds available in the geography</li>\n<li><code>icu_beds_in_use_any</code>: The number of ICU beds currently in use</li>\n<li><code>icu_beds_in_use_covid_suspected</code>: The number of ICU beds currently in use by a patient suspected of COVID-19</li>\n<li><code>icu_beds_in_use_covid_confirmed</code>: The number of ICU beds currently in use by a patient confirmed to have COVID-19</li>\n<li><code>icu_beds_in_use_covid_total</code>: The number of ICU beds currently in use by a patient who is suspected of having or confirmed to have COVID-19</li>\n<li><code>icu_beds_in_use_covid_new</code>: The number of ICU beds occupied by an individual suspected or confirmed of having COVID-19 that have been admitted today</li>\n<li><code>hospital_beds_capacity_count</code>: The number of hospital beds available in the geography</li>\n<li><code>hospital_beds_in_use_any</code>: The number of hospital beds currently in use</li>\n<li><code>hospital_beds_in_use_covid_suspected</code>: The number of hospital beds currently in use by a patient suspected of COVID-19</li>\n<li><code>hospital_beds_in_use_covid_confirmed</code>: The number of hospital beds currently in use by a patient confirmed to have COVID-19</li>\n<li><code>hospital_beds_in_use_covid_total</code>: The number of hospital beds currently in use by a patient who is suspected of having or confirmed to have COVID-19</li>\n<li><code>hospital_beds_in_use_covid_new</code>: The number of hospital beds occupied by an individual suspected or confirmed of having COVID-19 that have been admitted today</li>\n<li><code>ventilators_capacity_count</code>: The number of individuals who can be supported by a ventilator</li>\n<li><code>ventilators_in_use_any</code>: The number of individuals who are currently on a ventilator</li>\n<li><code>ventilators_in_use_covid_suspected</code>: The number of individuals who are suspected of having COVID-19 that are currently on a ventilator</li>\n<li><code>ventilators_in_use_covid_confirmed</code>: The number of individuals who are confirmed to have COVID-19 that are currently on a ventilator</li>\n<li><code>ventilators_in_use_covid_total</code>: The number of individuals who are either suspected of having or confirmed to have COVID-19 that are on a ventilator</li>\n<li><code>ventilators_in_use_covid_new</code>: The number of ventilators that are currently on a ventilator that are suspected of having or confirmed to have COVID-19 that started the ventilator today</li>\n<li><code>recovered_total</code>: The number of individuals who tested positive for COVID-19 and no longer test positive</li>\n<li><code>active_total</code>: The number of currently active COVID-19 cases</li>\n</ul>\n<p>These variables are only collected from official US federal/state/county government sources or redistributed from reputable sources like CovidTracking Project, USAFacts, and the New York Times</p>\n","urlObject":{"path":["covid_us"],"host":["https://api.covidcountydata.org"],"query":[{"description":{"content":"<p>The date that corresponds to the observed variable</p>\n","type":"text/plain"},"key":"dt","value":"gt.2020-08-26"},{"disabled":true,"description":{"content":"<p>The 2 digit fips code for US states and 5 digit fips code for US counties.</p>\n","type":"text/plain"},"key":"location","value":"<integer>"},{"disabled":true,"description":{"content":"<p>One of the variables described in the table description</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the variable</p>\n","type":"text/plain"},"key":"value","value":"<integer>"},{"disabled":true,"key":"fips","value":"<text>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[{"id":"92d1c2f2-ebf9-4b3d-863b-efe7e54fcb42","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/covid_us?dt=<date>&location=<integer>&variable=<text>&value=<integer>&fips=<text>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["covid_us"],"query":[{"key":"dt","value":"<date>"},{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"fips","value":"<text>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"eb67398e-c5a0-498e-8d80-f984ed2eea92","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/covid_us?dt=<date>&location=<integer>&variable=<text>&value=<integer>&fips=<text>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["covid_us"],"query":[{"key":"dt","value":"<date>"},{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"fips","value":"<text>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<text>\",\n  \"location\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<text>\",\n  \"location\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"cba148e0-1542-47a6-af52-a47536e281ad"},{"name":"covidtrackingproject","id":"aeeacb3a-3422-490b-b846-92db24ed418f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/covidtrackingproject?fips=eq.12&limit=20","description":"<p>This table contains the data from the COVID Tracking Project COVID data</p>\n<p>This table only includes the most recent observation for each date, location, and variable. If you are interested in historical revisions of this data, please reach out -- We have previous \"vintages\" of the CTP data but, in order to simplify our list of tables, we have chosen not to expose (but are happy to if it would be useful).</p>\n<p>The COVID Tracking Project collects data on the number of cases, test results, and hospitaliztions at the state level. As always, if you intend to use this data, we recommend that you read the corresponding documentation on their <a href=\"https://covidtracking.com/data\">data page</a> as it provides insights into how data collection changed at various points in time and highlights other data caveats.</p>\n<p>The data can also be found at on the <a href=\"https://covidtracking.com/data\">COVID Tracking Project page</a>.</p>\n<p>The COVID Tracking Project data is released under the following license:</p>\n<p>You are welcome to copy, distribute, and develop data and website content from The COVID Tracking Project at The Atlantic for all healthcare, medical, journalistic and non-commercial uses, including any personal, editorial, academic, or research purposes.</p>\n<p>The COVID Tracking Project at The Atlantic data and website content is published under a Creative Commons CC BY-NC-4.0 license, which requires users to attribute the source and license type (CC BY-NC-4.0) when sharing our data or website content. The COVID Tracking Project at The Atlantic also grants permission for any derivative use of this data and website content that supports healthcare or medical research (including institutional use by public health and for-profit organizations), or journalistic usage (by nonprofit or for-profit organizations). All other commercial uses are not permitted under the Creative Commons license, and will require permission from The COVID Tracking Project at The Atlantic.</p>\n","urlObject":{"path":["covidtrackingproject"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The date of the observation</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"description":{"content":"<p>The fips code corresponding to the observation</p>\n","type":"text/plain"},"key":"fips","value":"eq.12"},{"disabled":true,"description":{"content":"<p>Denotes whether observation is total cases or total deaths</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the observation</p>\n","type":"text/plain"},"key":"value","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"75fa37c2-909e-4950-b0e8-98dc92b12345","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/covidtrackingproject?dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["covidtrackingproject"],"query":[{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"edde86e1-a8ac-4563-b9be-ed85c0866643","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/covidtrackingproject?dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["covidtrackingproject"],"query":[{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"aeeacb3a-3422-490b-b846-92db24ed418f"},{"name":"demographics","id":"256ddc02-1c90-40b0-b92c-f0d856a3b87c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/demographics?location=eq.12095","description":"<p>This table contains information on the demographics of a particular geography</p>\n<p>For the United States, this data comes from the American Community Survey that is administered by the US Census. Currently, the following variables are collected in the database</p>\n<ul>\n<li>Total population</li>\n<li>Median age</li>\n<li>Fraction of the population over 65</li>\n<li>Fraction of the population who identify as various races or as Hispanic/Latino</li>\n<li>Fraction of the population with various degrees of education</li>\n<li>Fraction of the population that commutes in various ways</li>\n<li>Mean travel time to work (minutes)</li>\n<li>Median household income</li>\n<li>Mean household income</li>\n<li>Fraction of the (civilian) population with/without health insurance</li>\n<li>Fraction of families who had an income less than poverty level in the last year</li>\n</ul>\n<p>Please note that we are willing (and easily able!) to add other years or variables if there is interest --- The variables that we do include are because people have asked about them.</p>\n<p>Source(s):</p>\n<p>US Census American Community Survey (<a href=\"https://www.census.gov/programs-surveys/acs\">https://www.census.gov/programs-surveys/acs</a>)</p>\n","urlObject":{"path":["demographics"],"host":["https://api.covidcountydata.org"],"query":[{"description":{"content":"<p>This value is a numerical representation of a geography. For the United States, this number is the FIPS code. See our documentation page for more information.</p>\n","type":"text/plain"},"key":"location","value":"eq.12095"},{"disabled":true,"description":{"content":"<p>A description of the variable</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the variable</p>\n","type":"text/plain"},"key":"value","value":"<real>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"<string>"}],"variable":[]}},"response":[{"id":"8cee4845-b8b1-4fca-88dd-a80f15295735","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/demographics?location=<bigint>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["demographics"],"query":[{"key":"location","value":"<bigint>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d2d26ac9-fd06-488b-ad15-c8cf17777c2c","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/demographics?location=<bigint>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["demographics"],"query":[{"key":"location","value":"<bigint>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"location\": \"<bigint>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"location\": \"<bigint>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"256ddc02-1c90-40b0-b92c-f0d856a3b87c"},{"name":"economic_snapshots","id":"e47f7a5d-ed6a-4abd-a82f-969a0e9faa22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/economic_snapshots?location=eq.6095","description":"<p>This table contains information on economic characteristics of different geographic areas.</p>\n<p>These variables are not typically collected at a sufficiently high frequency to use them as time-series data but rather we use\nthem to characterize the economic features of different locations. For example, while unemployment claims is observed on a\nweekly basis, data on the industry make-up of a geographic region is only available at a yearly frequency.</p>\n<p>The variables currently included here are:</p>\n<ul>\n<li>Industry specific GDP at the county/state level</li>\n</ul>\n<p>These variables are collected from a variety of sources.</p>\n<p>Source(s):</p>\n<ul>\n<li>Bureau of Economic Analysis</li>\n</ul>\n","urlObject":{"path":["economic_snapshots"],"host":["https://api.covidcountydata.org"],"query":[{"description":{"content":"<p>The fips code</p>\n","type":"text/plain"},"key":"location","value":"eq.6095"},{"disabled":true,"description":{"content":"<p>A description of the variable</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"key":"value","value":"<double precision>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"<string>"}],"variable":[]}},"response":[{"id":"2c404125-7c8c-475a-9bfb-5df5bcf9b47c","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/economic_snapshots?location=<integer>&variable=<text>&value=<double precision>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["economic_snapshots"],"query":[{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<double precision>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"3097b13a-ef93-46f7-bb0d-15f930a6dc97","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/economic_snapshots?location=<integer>&variable=<text>&value=<double precision>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["economic_snapshots"],"query":[{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<double precision>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"location\": \"<integer>\",\n  \"value\": \"<double precision>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"location\": \"<integer>\",\n  \"value\": \"<double precision>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"e47f7a5d-ed6a-4abd-a82f-969a0e9faa22"},{"name":"economics","id":"fb25dc55-ad16-429c-9b01-ec171dcd2e0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/economics?limit=10","description":"<p>This table contains information on economic outcomes as time series data</p>\n<p>These variables tend to be observed at a daily/weekly/monthly/quarterly frequency and we can use them to think\nabout changes in the economy as opposed to the slow moving variables included in the <code>economic_snapshots</code> table</p>\n<p>These economic variables currently include:</p>\n<ul>\n<li>Weekly Economic Index produced by Jim Stock</li>\n<li>State unemployment claims (county forthcoming)</li>\n</ul>\n<p>These variables are collected from a variety of sources.</p>\n<p>Source(s):</p>\n<ul>\n<li>Department of Labor</li>\n<li>Weekly Economic Index, Jim Stock (<a href=\"https://www.jimstock.org/\">https://www.jimstock.org/</a>)</li>\n<li>US Census</li>\n</ul>\n","urlObject":{"path":["economics"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The date of the observation</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"disabled":true,"description":{"content":"<p>The fips code</p>\n","type":"text/plain"},"key":"location","value":"<integer>"},{"disabled":true,"description":{"content":"<p>A description of the variable</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the variable</p>\n","type":"text/plain"},"key":"value","value":"<real>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[]}},"response":[{"id":"342b4fd5-94d9-40bc-916b-88d9216dea34","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/economics?dt=<date>&location=<integer>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["economics"],"query":[{"key":"dt","value":"<date>"},{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"location\": \"<integer>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"location\": \"<integer>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n }\n]"},{"id":"48b2b144-5222-4fb2-8f9d-61cbd0d770fd","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/economics?dt=<date>&location=<integer>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["economics"],"query":[{"key":"dt","value":"<date>"},{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fb25dc55-ad16-429c-9b01-ec171dcd2e0e"},{"name":"hhs","id":"9e5b3384-a1d8-446d-b27e-c93fefb46014","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/hhs?order=dt.desc&limit=20","description":"<p>This table contains the data from the HHS COVID data</p>\n<p>This table only includes the most recent observation for each date, location, and variable. If you are interested in historical revisions of this data, please reach out -- We have previous \"vintages\" of the HHS data but, in order to simplify our list of tables, we have chosen not to expose (but are happy to if it would be useful).</p>\n","urlObject":{"path":["hhs"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The date of the observation</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"disabled":true,"description":{"content":"<p>The fips code corresponding to the observation</p>\n","type":"text/plain"},"key":"fips","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Denotes which variable the value corresponds to</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the observation</p>\n","type":"text/plain"},"key":"value","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"dt.desc"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"5c66900f-9bd1-4bdf-8f41-cd7ec9920348","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/hhs?dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["hhs"],"query":[{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"e109f358-dc33-4227-bf56-26d4ff54f79d","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/hhs?dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["hhs"],"query":[{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"9e5b3384-a1d8-446d-b27e-c93fefb46014"},{"name":"mobility_devices","id":"69602547-2819-45a0-a476-9a8f929b6c28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/mobility_devices?location=eq.36061&limit=100","description":"<p>The DEX, or device exposure index, is an index that measures how much movement there is within a particular geography (state or county). This data is currently only available for the US.</p>\n<p>The DEX answers the question, for a smartphone residing in a given geography, how many distinct devices also visited any of the commercial venues that this device visited today?</p>\n<p>The state-level (county-level) DEX reports the state-level average of this number across all devices residing in the state (county) that day. The DEX values are necessarily only a fraction of the number of distinct individuals that also visited any of the commercial venues visited by a device, since only a fraction of individuals, venues, and visits are in the device sample.</p>\n<p>In the context of the ongoing pandemic, the DEX measure may be biased if devices sheltering-in-place are not in the sample due to lack of movement. We report adjusted DEX values to help address this selection bias. DEX-adjusted is computed assuming that the number of devices has not declined since the early-2020 peak and that unobserved devices did not visit any commercial venues.</p>\n<p>Both the county and state level DEX have information on the number of devices in the sample and the adjusted DEX values as described above. Additionally, the state DEX has information in which the data has been separated into geographic regions that share demographic characteristics...</p>\n<p>This data is produced by Victor Couture, Jonathan Dingel, Allison Green, Jessie Handbury, and Kevin Williams with assistance from Hayden Parsley and Serena Xu. They are derived from anonymized, aggregated smartphone movement data provided by PlaceIQ. We are grateful to the authors and to PlaceIQ for making this data available to us.</p>\n<p>If you use this dataset, we recommend seeing the <a href=\"https://github.com/COVIDExposureIndices/COVIDExposureIndices/blob/master/documentation/DEX_notes.md\">notes for users of the DEX dataset</a> and <a href=\"https://github.com/COVIDExposureIndices/COVIDExposureIndices/blob/master/documentation/DEX.pdf\">DEX documentation</a> produced by the original authors.</p>\n<p>Source: <a href=\"https://github.com/COVIDExposureIndices/COVIDExposureIndices\">https://github.com/COVIDExposureIndices/COVIDExposureIndices</a></p>\n","urlObject":{"path":["mobility_devices"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The date.</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"description":{"content":"<p>The fips code.</p>\n","type":"text/plain"},"key":"location","value":"eq.36061"},{"disabled":true,"description":{"content":"<p>The variable associated with the DEX value --- This will either be a number of devices or a DEX value.</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the variable on date <code>dt</code> in geography <code>fips</code>.</p>\n","type":"text/plain"},"key":"value","value":"<real>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"100"}],"variable":[]}},"response":[{"id":"99e643bd-725b-414f-805b-a2051a2c8c67","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/mobility_devices?dt=<date>&location=<integer>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["mobility_devices"],"query":[{"key":"dt","value":"<date>"},{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"ac67b00a-cec7-4887-875c-19110d1facb1","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/mobility_devices?dt=<date>&location=<integer>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["mobility_devices"],"query":[{"key":"dt","value":"<date>"},{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"location\": \"<integer>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"location\": \"<integer>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"69602547-2819-45a0-a476-9a8f929b6c28"},{"name":"mobility_locations","id":"e99234a3-7c35-42af-a10f-7a22aaf55727","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/mobility_locations?fips_prev=eq.36061&fips_today=eq.12095","description":"<p>The Location Exposure Index (LEX) is a measure of how much exposure there is across different geographies. This data is currently only available for the US.</p>\n<p>Among smartphones that pinged in a given state (county) today, what share of those devices pinged in each state (county) at least once during the previous 14 days? The daily state-level (county-level) LEX is a 51-by-51 (ncounties-by-ncounties) matrix in which each cell reports, among devices that pinged today in the column state (county), the share of devices that pinged in the row state (county) at least once during the previous 14 days. It is important to note that a cell phone can ping in more than a single state (county) which means that these shares will not necessarily sum to 1.</p>\n<p>This index is produced by Victor Couture, Jonathan Dingel, Allison Green, Jessie Handbury, and Kevin Williams with assistance from Hayden Parsley and Serena Xu. They are derived from anonymized, aggregated smartphone movement data provided by PlaceIQ. We are grateful to the authors and to PlaceIQ for making this data available to us.</p>\n<p>If you use this dataset, we recommend seeing the <a href=\"https://github.com/COVIDExposureIndices/COVIDExposureIndices/blob/master/documentation/LEX_notes.md\">notes for users of the LEX dataset</a> and <a href=\"https://github.com/COVIDExposureIndices/COVIDExposureIndices/blob/master/documentation/LEX.pdf\">LEX documentation</a> produced by the original authors.</p>\n<p>Source: <a href=\"https://github.com/COVIDExposureIndices/COVIDExposureIndices\">https://github.com/COVIDExposureIndices/COVIDExposureIndices</a></p>\n","urlObject":{"path":["mobility_locations"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The date for which the data applies</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"description":{"content":"<p>The state (county) for which a device was found in the previous 14 days.</p>\n","type":"text/plain"},"key":"fips_prev","value":"eq.36061"},{"description":{"content":"<p>The state (county) for which a device was found on the given date</p>\n","type":"text/plain"},"key":"fips_today","value":"eq.12095"},{"disabled":true,"description":{"content":"<p>The LEX number</p>\n","type":"text/plain"},"key":"lex","value":"<numeric>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"dt.desc"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"<string>"}],"variable":[]}},"response":[{"id":"2b622752-b58d-4d07-b9d2-da02605cc81a","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/mobility_locations?dt=<date>&fips_prev=<integer>&fips_today=<integer>&lex=<numeric>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["mobility_locations"],"query":[{"key":"dt","value":"<date>"},{"key":"fips_prev","value":"<integer>"},{"key":"fips_today","value":"<integer>"},{"key":"lex","value":"<numeric>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"aa0346f3-5f71-412c-9d6b-57d6937d85e2","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/mobility_locations?dt=<date>&fips_prev=<integer>&fips_today=<integer>&lex=<numeric>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["mobility_locations"],"query":[{"key":"dt","value":"<date>"},{"key":"fips_prev","value":"<integer>"},{"key":"fips_today","value":"<integer>"},{"key":"lex","value":"<numeric>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"fips_prev\": \"<integer>\",\n  \"fips_today\": \"<integer>\",\n  \"lex\": \"<numeric>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"fips_prev\": \"<integer>\",\n  \"fips_today\": \"<integer>\",\n  \"lex\": \"<numeric>\"\n }\n]"}],"_postman_id":"e99234a3-7c35-42af-a10f-7a22aaf55727"},{"name":"npi_us","id":"70b1f13b-cf78-4535-b774-84bab5d7e3f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/npi_us?location=eq.6095&limit=30","description":"<p>This table contains information on the nonpharmaceutical interventions (NPIs) that were taken in the United States in response to COVID</p>\n<p>The data begins on March 1, 2020 and covers approximately 650 different US geographies (states and counties). There are 10 different NPIs covered in this dataset which include:</p>\n<ul>\n<li>closing_of_public_venues: Public venues closed. A government order closing gathering venues for in-person service, such as restaurants, bars, and theaters.</li>\n<li>lockdown: Lock down</li>\n<li>non-essential_services_closure: Non-essential services closure</li>\n<li>religious_gatherings_banned: Cancelling of religious gatherings, either explicitly or implicitly by applying gathering size/shelter-in-place limitations to religious gatherings as well</li>\n<li>shelter_in_place: An order indicating that people should shelter in their homes except for essential reasons</li>\n<li>social_distancing: Social distancing mandate of at least 6 ft between people</li>\n<li>gathering_size_10_0: Gatherings are limited to between 0 and 10 people</li>\n<li>gathering_size_25_11: Gatherings are limited to between 11 and 25 people</li>\n<li>gathering_size_100_26: Gatherings are limited to between 26 and 100 people</li>\n<li>gathering_size_500_101: Gatherings are limited to between 101 and 500 people</li>\n</ul>\n<p>The original data was collected by Keystone Strategy and is distributed under the Creative Commons Attribution 4.0 International Public License.</p>\n<p>Keystone Strategy COVID page: <a href=\"https://www.keystonestrategy.com/coronavirus-covid19-intervention-dataset-model/\">https://www.keystonestrategy.com/coronavirus-covid19-intervention-dataset-model/</a>\nSource: <a href=\"https://github.com/Keystone-Strategy/covid19-intervention-data\">https://github.com/Keystone-Strategy/covid19-intervention-data</a></p>\n","urlObject":{"path":["npi_us"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The date at which the intervention is evaluated</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"description":{"content":"<p>The FIPS code for the geography</p>\n","type":"text/plain"},"key":"location","value":"eq.6095"},{"disabled":true,"description":{"content":"<p>The NPI being considered</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>Whether the intervention from <code>variable</code> was active in geography <code>location</code> on date <code>dt</code></p>\n","type":"text/plain"},"key":"value","value":"<boolean>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"30"}],"variable":[]}},"response":[{"id":"4eb35cc3-7d28-4e60-b312-0c446896e1e5","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/npi_us?dt=<date>&location=<integer>&variable=<text>&value=<boolean>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["npi_us"],"query":[{"key":"dt","value":"<date>"},{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<boolean>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"ccf09ed7-213b-4cab-a3a4-e143b4506054","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/npi_us?dt=<date>&location=<integer>&variable=<text>&value=<boolean>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["npi_us"],"query":[{"key":"dt","value":"<date>"},{"key":"location","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<boolean>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"location\": \"<integer>\",\n  \"value\": \"<boolean>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"location\": \"<integer>\",\n  \"value\": \"<boolean>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"70b1f13b-cf78-4535-b774-84bab5d7e3f7"},{"name":"nytimes_covid","id":"fb13a1ec-ab96-4f74-ab92-2f5db66341ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/nytimes_covid?fips=eq.12095&limit=20","description":"<p>This table contains the data from the NY Times COVID data</p>\n<p>This table only includes the most recent observation for each date, location, and variable. If you are interested in historical revisions of this data, please reach out -- We have previous \"vintages\" of the NYT data but, in order to simplify our list of tables, we have chosen not to expose (but are happy to if it would be useful).</p>\n<p>The data only includes total number of cases and total number of COVID related deaths. If you use this data, we recommend that you read the corresponding documentation on their github site as it provides useful insights to when certain variables changed how they were collected etc...</p>\n<p>The NYTimes COVID data can be found online at <a href=\"https://github.com/nytimes/covid-19-data\">https://github.com/nytimes/covid-19-data</a> and is released under the following license:</p>\n<p>Copyright 2020 by The New York Times Company</p>\n<p>In light of the current public health emergency, The New York Times Company is\nproviding this database under the following free-of-cost, perpetual,\nnon-exclusive license. Anyone may copy, distribute, and display the database, or\nany part thereof, and make derivative works based on it, provided  (a) any such\nuse is for non-commercial purposes only and (b) credit is given to The New York\nTimes in any public display of the database, in any publication derived in part\nor in full from the database, and in any other public use of the data contained\nin or derived from the database.</p>\n<p>By accessing or copying any part of the database, the user accepts the terms of\nthis license. Anyone seeking to use the database for other purposes is required\nto contact The New York Times Company at <a href=\"mailto:covid-data@nytimes.com\">covid-data@nytimes.com</a> to obtain\npermission.</p>\n<p>The New York Times has made every effort to ensure the accuracy of the\ninformation. However, the database may contain typographic errors or\ninaccuracies and may not be complete or current at any given time. Licensees\nfurther agree to assume all liability for any claims that may arise from or\nrelate in any way to their use of the database and to hold The New York Times\nCompany harmless from any such claims.</p>\n","urlObject":{"path":["nytimes_covid"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The date of the observation</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"description":{"content":"<p>The fips code corresponding to the observation</p>\n","type":"text/plain"},"key":"fips","value":"eq.12095"},{"disabled":true,"description":{"content":"<p>Denotes whether observation is total cases or total deaths</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the observation</p>\n","type":"text/plain"},"key":"value","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"2709b812-04d6-4336-b9a9-27ccef741372","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/nytimes_covid?dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["nytimes_covid"],"query":[{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n }\n]"},{"id":"4e6e5a04-21ab-476d-962f-3d513c11070e","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/nytimes_covid?dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["nytimes_covid"],"query":[{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fb13a1ec-ab96-4f74-ab92-2f5db66341ed"},{"name":"us_counties","id":"1967e53d-be65-4b69-a6e2-b499f61923bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/us_counties?limit=20","description":"<p>This table contains basic information about the U.S. counties</p>\n<p>Source(s):</p>\n<p>US Census TIGER/Line Shapefiles (<a href=\"https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-line-file.html\">https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-line-file.html</a>)</p>\n","urlObject":{"path":["us_counties"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The fips code for the state</p>\n","type":"text/plain"},"key":"location","value":"<bigint>"},{"disabled":true,"description":{"content":"<p>The county name</p>\n","type":"text/plain"},"key":"county_name","value":"<text>"},{"disabled":true,"description":{"content":"<p>The name of the state</p>\n","type":"text/plain"},"key":"state_name","value":"<text>"},{"disabled":true,"description":{"content":"<p>The name of the variable represented in this row. Should be one of (area, latitude, longitude)</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the variable represented in this row</p>\n","type":"text/plain"},"key":"value","value":"<real>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"ab22e3ab-40f4-47a5-b45b-8f7fccb50112","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/us_counties?location=<bigint>&county_name=<text>&state_name=<text>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["us_counties"],"query":[{"key":"location","value":"<bigint>"},{"key":"county_name","value":"<text>"},{"key":"state_name","value":"<text>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"d41e7c0d-e833-41c0-9436-bbc641a87210","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/us_counties?location=<bigint>&county_name=<text>&state_name=<text>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["us_counties"],"query":[{"key":"location","value":"<bigint>"},{"key":"county_name","value":"<text>"},{"key":"state_name","value":"<text>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"county_name\": \"<text>\",\n  \"location\": \"<bigint>\",\n  \"state_name\": \"<text>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"county_name\": \"<text>\",\n  \"location\": \"<bigint>\",\n  \"state_name\": \"<text>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"1967e53d-be65-4b69-a6e2-b499f61923bc"},{"name":"us_states","id":"7094c133-cc7c-4e84-a244-9202d561973e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/us_states","description":"<p>This table contains basic information about the U.S. states</p>\n<p>Source(s):</p>\n<p>US Census TIGER/Line Shapefiles (<a href=\"https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-line-file.html\">https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-line-file.html</a>)</p>\n","urlObject":{"path":["us_states"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The fips code for the state</p>\n","type":"text/plain"},"key":"location","value":"<bigint>"},{"disabled":true,"description":{"content":"<p>The state name</p>\n","type":"text/plain"},"key":"name","value":"<text>"},{"disabled":true,"description":{"content":"<p>The name of the variable represented in this row. Should be one of (area, latitude, longitude)</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the variable represented in this row</p>\n","type":"text/plain"},"key":"value","value":"<real>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"disabled":true,"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"<string>"}],"variable":[]}},"response":[{"id":"15c0b731-0b88-4aa4-898c-881c3c00e59b","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/us_states?location=<bigint>&name=<text>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["us_states"],"query":[{"key":"location","value":"<bigint>"},{"key":"name","value":"<text>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"location\": \"<bigint>\",\n  \"name\": \"<text>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"location\": \"<bigint>\",\n  \"name\": \"<text>\",\n  \"value\": \"<real>\",\n  \"variable\": \"<text>\"\n }\n]"},{"id":"71c899d1-5504-45ff-a6c1-3d81180689db","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/us_states?location=<bigint>&name=<text>&variable=<text>&value=<real>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["us_states"],"query":[{"key":"location","value":"<bigint>"},{"key":"name","value":"<text>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<real>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"7094c133-cc7c-4e84-a244-9202d561973e"},{"name":"usafacts_covid","id":"6e8390d8-6f81-4c70-943f-f45244ea5bbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"apikey","value":"{{ccd_apikey}}"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range","value":"<string>"},{"description":"<p>Limiting and Pagination</p>\n","key":"Range-Unit","value":"items"},{"description":"<p>Preference</p>\n","key":"Prefer","value":"<string>"}],"url":"https://api.covidcountydata.org/usafacts_covid?fips=eq.6&order=dt.desc&limit=20","description":"<p>This table the USAFacts COVID data</p>\n<p>This table only includes the most recent observation for each date, location, and variable. If you are interested in historical revisions of this data, please reach out -- We have previous \"vintages\" of the USAFacts data but, in order to simplify our list of tables, we have chosen not to expose (but are happy to if it would be useful).</p>\n<p>The data only includes total number of cases and total number of COVID related deaths. If you use this data, we recommend that you read the corresponding documentation on their webpage as it provides useful insights to how the data were collected and how they should be used etc...</p>\n<p>The USAFacts COVID data can be found online at <a href=\"https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/\">https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/</a> and is released under the Creative Commons Share Alike 4.0 license:</p>\n<p>To see the terms of this license refer to <a href=\"https://creativecommons.org/licenses/by-sa/4.0/\">https://creativecommons.org/licenses/by-sa/4.0/</a></p>\n","urlObject":{"path":["usafacts_covid"],"host":["https://api.covidcountydata.org"],"query":[{"disabled":true,"description":{"content":"<p>The date of the observation</p>\n","type":"text/plain"},"key":"dt","value":"<date>"},{"description":{"content":"<p>The fips code corresponding to the observation</p>\n","type":"text/plain"},"key":"fips","value":"eq.6"},{"disabled":true,"description":{"content":"<p>Denotes whether observation is total cases or total deaths</p>\n","type":"text/plain"},"key":"variable","value":"<text>"},{"disabled":true,"description":{"content":"<p>The value of the observation</p>\n","type":"text/plain"},"key":"value","value":"<integer>"},{"disabled":true,"description":{"content":"<p>Filtering Columns</p>\n","type":"text/plain"},"key":"select","value":"<string>"},{"description":{"content":"<p>Ordering</p>\n","type":"text/plain"},"key":"order","value":"dt.desc"},{"disabled":true,"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"offset","value":"<string>"},{"description":{"content":"<p>Limiting and Pagination</p>\n","type":"text/plain"},"key":"limit","value":"20"}],"variable":[]}},"response":[{"id":"7513e7f3-3321-4c60-9cbf-0e1e04cee30a","name":"Partial Content","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/usafacts_covid?dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["usafacts_covid"],"query":[{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"Partial Content","code":206,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""},{"id":"fa756787-dd4e-4e7e-bd1f-ea2a3c4fd12c","name":"OK","originalRequest":{"method":"GET","header":[{"description":"Limiting and Pagination","key":"Range","value":"<string>"},{"description":"Limiting and Pagination","key":"Range-Unit","value":"items"},{"description":"Preference","key":"Prefer","value":"<string>"}],"url":{"raw":"https://api.covidcountydata.org/usafacts_covid?dt=<date>&fips=<integer>&variable=<text>&value=<integer>&select=<string>&order=<string>&offset=<string>&limit=<string>","host":["https://api.covidcountydata.org"],"path":["usafacts_covid"],"query":[{"key":"dt","value":"<date>"},{"key":"fips","value":"<integer>"},{"key":"variable","value":"<text>"},{"key":"value","value":"<integer>"},{"key":"select","value":"<string>"},{"key":"order","value":"<string>"},{"key":"offset","value":"<string>"},{"key":"limit","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n },\n {\n  \"dt\": \"<date>\",\n  \"fips\": \"<integer>\",\n  \"value\": \"<integer>\",\n  \"variable\": \"<text>\"\n }\n]"}],"_postman_id":"6e8390d8-6f81-4c70-943f-f45244ea5bbb"}],"event":[{"listen":"prerequest","script":{"id":"453fc266-05fc-49fa-b9a4-08195dd31aa8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b97dd532-9d96-4254-ba58-cc06c08dfc33","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://api.covidcountydata.org"}]}