Downloading bulk data via API
Last updated
Last updated
Ballotpedia’s bulk data clients can access their data on-demand with our client portal at https://clients.ballotpedia.org/. The data is refreshed every 24 hours. You may access your data through two methods, as described below:
Login with provided password and click to download latest file (for non-technical users)
Access latest data file via API (for technical users, see next page)
The API can be called directly by interacting with two endpoints. Please note that these endpoints can only be accessed from a non-CORS context.
This endpoint will return an array of objects, each object represents a data set and contains the ID, Title and Description.
The endpoint requires your API Key passed in as a header:
Example response with a single file:
This endpoint will return a URL to the requested file:
The endpoint requires your API Key passed in the header as described above, the content type of application/json, and the ID (obtained from the getQueryList endpoint) of the data set and the format passed via the body in the POST request.
Headers
Body
To get the data to return in csv format, make the same call as for json data but change the format parameter from json to csv.
Example Response:
The URL for the downloadable file expires after 5 minutes. The URL returned should change with each call to getQueryResults. Files are re-generated daily, and the URL will always return only the last generated file.