-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1167 from cmu-delphi/release/delphi-epidata-0.4.12
Release Delphi Epidata 0.4.12
- Loading branch information
Showing
49 changed files
with
217 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.4.11 | ||
current_version = 0.4.12 | ||
commit = False | ||
tag = False | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = Delphi Development | ||
version = 0.4.11 | ||
version = 0.4.12 | ||
|
||
[options] | ||
packages = | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
title: API Keys | ||
nav_order: 1 | ||
has_children: true | ||
--- | ||
|
||
# Epidata API Keys | ||
|
||
Anyone may access the Epidata API anonymously without providing any personal | ||
data. Anonymous API access is subject to the following restrictions; they may | ||
change as we learn more about their impact: | ||
|
||
1. public datasets only | ||
1. rate-limited to 60 requests per hour | ||
1. only two parameters may have multiple selections | ||
|
||
For example, a query for three signals on one date across all counties can be | ||
submitted anonymously, but a query for three signals on a period of four weeks | ||
across all counties requires an API key. | ||
|
||
An API key is a pseudonymous access token that grants privileged access to the | ||
Epidata API. You can request an API key by | ||
[registering with us](https://forms.gle/hkBr5SfQgxguAfEt7). | ||
Privileges of registration may include: | ||
|
||
1. no rate limit | ||
1. no limit on multiple selections | ||
|
||
We require an email address for all registrations so that we can contact you to | ||
resolve problems with excessive or abnormal usage patterns. Any additional | ||
personal information you provide to us at registration will be much appreciated, | ||
because it will help us understand what our data is used for and inform our | ||
plans and priorities, but is voluntary. For more information on how we use and | ||
store the information you provide us at registration time, see our | ||
[privacy statement](api/privacy_statement.md). | ||
|
||
## Usage | ||
|
||
If you choose to [register for an API key](https://forms.gle/hkBr5SfQgxguAfEt7), | ||
there are several ways to use your key to authenticate your requests: | ||
|
||
### Via request parameter | ||
|
||
The request parameter “api_key” can be used to pass the API key to the server. | ||
Example: | ||
|
||
https://api.delphi.cmu.edu/epidata/covidcast/meta?api_key=your_api_key_here | ||
|
||
### Via Basic Authentication | ||
|
||
Another method is using the HTTP basic authorization header with the username | ||
"epidata" and the API key as the password. Example: | ||
|
||
``` | ||
curl -u 'epidata:your_api_key_here' https://api.delphi.cmu.edu/epidata/covidcast/meta | ||
``` | ||
|
||
### Via Bearer Token | ||
|
||
Another method is providing the key in a bearer token header. Example: | ||
|
||
``` | ||
curl -H 'Authorization: Bearer your_api_key_here' https://api.delphi.cmu.edu/epidata/covidcast/meta | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.