--- layout: docs title: Docs - API - Elections - Get nav: docs toc: api_elections subtoc: api_elections_get ---
Get a specific Election.
GET /v1/elections/{id}
Parameter | Format | Description | Example |
---|---|---|---|
include
|
String |
A comma separated list of resources to include
for each Election object response. Options are:
"contests"
and
"precincts" .
|
include=contests |
We will return an Election object for the specified id.
Example response:
{ "type": "election", "id": "123-4", "ocd_id": null, "election_type": "general", "election_name": "Midterm Election", "date": "2018-11-05", "short_info": "This is a major national election that..." }
Code | Response Format | Description |
---|---|---|
200
|
Response | Successful request. |
400
|
Error Response | The query parameters you included were invalid. The Error Response will include a message describing exactly was invalid. |
404
|
Error Response | We could not find an Election with that id. |
429
|
N/A |
You are making too many requests to the API. Check the
Retry-After header for how many seconds to
wait until trying the request again. See our docs on
Rate Limiting.
|
500
|
N/A | An internal server error occurred. We log these errors and try to fix them quickly, so if you keep getting 500 errors for a few days, please email us. |
503
|
N/A | We are down for maintenance. Please try your request again in a few minutes. |
504
|
N/A | Your request timed out. Please try your request again in a few minutes. |