Overview

The HackRPI TODO API is a RESTful API that allows you to manage a list of TODO items. You can create, read, update, and delete TODO lists and items using the API. The API will return JSON responses for all requests. And has two major data types: Lists and ListItems. You can learn more about these types at:

Data Types

API Key

You can get an API key by clicking the button below, and creating an account if you haven't already. This account is purely to prevent abuse of the API, and will not be used for any other purpose.

Once you have an API key, you can use it to authenticate your requests to the API by adding it to the authorization header.

For example, if you have an API key of 1234, you would add the following header to your request:

headers: { authorization: "1234" }

Endpoints

The API has the following endpoints for manipulating lists and list items. You can learn more about each endpoint, what they do, what the request should look like and what the response will look like by clicking on the link. The endpoints should be capitalized as shown.