Historical Events API Documentation
# Use this endpoint to make a GET requests to the API
https://api.apiverve.com/v1/historicalevents
Historical Events is a simple tool for getting historical events. It returns a list of historical events between 300BC and 2012
To use this API, you need an API key. You can get one by creating an account on apiverve.com and visiting your dashboard.
Important: Ensure that this API is enabled from within your dashboard to use it in your application. If not, you may receive a 403
error
{
"status": "ok",
"error": null,
"data": {
"count": 6,
"filteredOn": [
"text"
],
"events": [
{
"year": "1969",
"month": "05",
"day": "18",
"date": "1969/05/18",
"event": " Apollo program: ''Apollo 10'' (Tom Stafford, Gene Cernan, John Young) is launched, on the full dress-rehearsal for the Moon landing.",
"range": "May",
"granularity": "year"
},
{
"year": "1969",
"month": "05",
"day": "25",
"date": "1969/05/25",
"event": "Apollo program: ''Apollo 10'' returns to Earth, after a successful 8-day test of all the components needed for the upcoming first manned Moon landing.",
"range": "May",
"granularity": "year"
},
{
"year": "1969",
"month": "07",
"day": "20",
"date": "1969/07/20",
"event": " Apollo program: The lunar module ''Eagle'' lands on the lunar surface. An estimated 500 million people worldwide watch in awe as Neil Armstrong takes his historic first steps on the Moon at 02:56 UTC, the largest television audience for a live broadcast at that time.cite web|title=Manned Space Chronology: Apollo_11|url=http://www.spaceline.org/flightchron/apollo11.html|publisher=spaceline.org|accessdate=2008-02-06| archiveurl= http://web.archive.org/web/20080214213826/http://www.spaceline.org/flightchron/apollo11.html| archivedate= 14 February 2008 !--DASHBot--| deadurl= no}}cite web|title= Apollo Anniversary: Moon Landing quotInspired Worldquot|url=http://news.nationalgeographic.com/news/2004/07/0714_040714_moonlanding.html|publisher=nationalgeographic.com|accessdate=2008-02-06| archiveurl= http://web.archive.org/web/20080209140059/http://news.nationalgeographic.com/news/2004/07/0714_040714_moonlanding.html| archivedate= 9 February 2008 !--DASHBot--| deadurl= no}}",
"range": "July",
"granularity": "year"
},
{
"year": "1969",
"month": "07",
"day": "20",
"date": "1969/07/20",
"event": "The ''Apollo 11'' astronauts return from the first successful Moon landing, and are placed in biological isolation for several days, on the chance they may have brought back lunar germs. The airless lunar environment is later determined to preclude microscopic life.",
"range": "July",
"granularity": "year"
},
{
"year": "1971",
"month": "02",
"day": "08",
"date": "1971/02/08",
"event": "Apollo program: ''Apollo 14'' returns to Earth after the third manned Moon landing.",
"range": "February",
"granularity": "year"
},
{
"year": "1973",
"month": "01",
"day": "07",
"date": "1973/01/07",
"event": "Elvis Presley's concert in Hawaii. The first worldwide telecast by an entertainer watched by more people than watched the Apollo moon landings.",
"range": "January",
"granularity": "year"
}
]
},
"code": 200
}
Get Historical Events by Keyword
Token Usage: 1
Get a list of historical events that match a specific keyword
QUERY PARAMETERS
Field | Type | Description |
---|---|---|
text | string | (Required) The keyword for which you want to get the historical events (e.g., moon landing) |
SAMPLE REQUEST QUERY
curl --request GET \
--url 'https://api.apiverve.com/v1/historicalevents?text=moon landing' \
--header 'x-api-key: YOUR_API_KEY'
Get Historical Events by Date
Token Usage: 1
Get a list of historical events that happened on a specific date
QUERY PARAMETERS
Field | Type | Description |
---|---|---|
year | int | (Required) The year for which you want to get the historical events (e.g., 1520) |
month | int | The month for which you want to get the historical events (e.g., 5) |
day | int | The day for which you want to get the historical events (e.g., 12) |
SAMPLE REQUEST QUERY
curl --request GET \
--url 'https://api.apiverve.com/v1/historicalevents?year=1520&month=5&day=12' \
--header 'x-api-key: YOUR_API_KEY'
Get Historical Events by Year
Token Usage: 1
Get a list of historical events that happened on a specific year
QUERY PARAMETERS
Field | Type | Description |
---|---|---|
year | int | (Required) The year for which you want to get the historical events (e.g., 1520) |
SAMPLE REQUEST QUERY
curl --request GET \
--url 'https://api.apiverve.com/v1/historicalevents?year=1520' \
--header 'x-api-key: YOUR_API_KEY'
RESPONSE CONTENT TYPES
The Historical Events API supports the following response content types:
application/json
, application/xml
, application/yaml
You can specify the response content type by setting the Accept
header in your request. If you don't specify a content type, the API will default to application/json
.
Authentication
# Here is a curl example
curl \
-X GET https://api.apiverve.com/v1/historicalevents \
-H 'x-api-key={{YOUR-API-KEY}}' \
-F 'auth=true' \
The Historical Events API uses an API Key to authenticate requests. You can view and manage your API key by visiting your dashboard.
Your API keys carry many privileges. To keep them from being abused, please do not share the keys on client-side code or Github etc. Keep them very secure.
To use any API, you must have it enabled from within your dashboard. Disabled APIs will fail to respond to your requests.
All requests made to the API must contain the header x-api-key
in each of your requests. API requests without authentication will fail.
All API requests must also be made over secure HTTPS
. Requests made over plain HTTP
will fail.
Error Code | Meaning |
---|---|
401 | Your request was made with invalid credentials. This error also appears when you don't pass the x-api-key header in your request.
|
403 | Typically, this occurs when you are trying to access an API that you have not enabled. |
Rate Limits
{
"status": "error",
"data": null,
"error": "Rate limit exceeded. Please upgrade your subscription plan."
}
Each subscription has its own rate limit. Your limit is based on your subscription plan (free or paid). If you exceed your limits, don't worry. You can always upgrade or downgrade at any time.
When you reach your limit, the service will stop responding and typically return an HTTP 429
response status code. The error will also contain a details JSON.
The Historical Events API uses the following error code:
Error Code | Meaning |
---|---|
429 | You have exceeded your rate limit and further requests will be denied until the next cycle. |
Errors
For reference, the Historical Events API uses the following error codes:
Error Code | Meaning |
---|---|
Code | Message |
200 | The request was successful. The response will include the requested data. |
400 | The request was invalid. The response will include a message that explains the error. |
401 | The request was not authorized. Usually, this means that the API key is missing or invalid. |
403 | This means that the request was trying to access a resource that it does not have permission to access. |
404 | This means that the resource you are trying to access does not exist. |
429 | This means that you have reached the rate limit. The response will include a Retry-After header that indicates how many seconds you need to wait before making a new request. |
500 | This means that there was an error on the server side. We are alerted when this happens and we will work to fix it as soon as possible. |