Intro to HTTP and REST

Great, you got to the second page of the Datawrapper API documentation and if you followed the Getting started section, you already used HTTP.

What is HTTP anyways?

HTTP stands for Hypertext Transfer Protocol and is the main communication channel for the web. By entering google.com into your browser, the browser and Google's servers will communicate and send data through HTTP. The Datawrapper API (and Google) use HTTPS (that S means secure, we don't want other people do read your data). HTTPS is an extension of HTTP where your data is encrypted using TLS. Now you read a bunch of abbreviations, and if you want to learn more, follow the links. The important part is that HTTP is how browsers and servers exchange messages.

RESTful APIs

As almost everything on this page, REST is an abbreviation, short for Representational State Transfer. It is a set of guidelines on how to build web services and organize interactions between them. The Datawrapper API mostly conforms to REST guidelines, but deviates where it makes sense for us.

You will mostly work on resources like users, charts or teams and take actions on them with standard HTTP verbs like GET, POST, PATCH and DELETE. Resources have associated URLs that you operate on. In the Getting started section, you already requested a resource with GET /v3/me, which tells the server that you want to see your user information.

The Datawrapper API uses the following verbs:

VerbExplanationExample
GETRequest the representation of a resource.GET /v3/charts/rjRUb πŸ”—

This will return a JSON representation of the beautiful scatterplot on our landing page.
POSTCreate a new resource.POST /v3/charts πŸ”—

This will create a new chart that you can edit with the API or through our app.
PATCHModify a resource.PATCH /v3/me πŸ”—

This action can modify your user information. Try changing your name.
PUTReplace an existing resource.PUT /v3/charts/rjRUb/data πŸ”—

This replaces the chart data with your provided data set.
DELETEDelete an existing resource.DELETE /v3/auth/tokens/<MY_TOKEN> πŸ”—

Deletes an API token.