Web APIs Blocks
Overview
Great data is an essential part of many apps built today and the Web API component enables apps to retrieve data from any public or private API (application programming interface) service on the web. For more advanced developers who have write access to a private API, this component also enables you to upload and delete data.
To see what public APIs are available, we recommend this list from Todd Motto.
Video Tutorial
How to Connect Your Thunkable App to a Web API
In this tutorial, you’ll learn what an API is, connect a Thunkable project to a web API, retrieve and parse the relevant data from the API, and use Thunkable blocks to modify the API URL that is called.
Add a Web API to Your App
To add a Web API component to your app:
Go to your Blocks tab.
Scroll to the bottom of your blocks panel on the left side and find the
Advanced
section.Click the expand chevron to show the Advanced invisible components.
A Web API component properties dialog launches. See the chart below for descriptions of the various properties. Click Submit to create the Web API component, or Delete to dismiss the dialog without creating the component.
Once you have the API key, you'll need to enter the unique URL into the property field of the Web API component.
Property | Description | Required? |
---|---|---|
URL | The url for the web request which usually contains an API key | Required |
QueryParameters | Specifies some parameters of the data | Optional |
Body | Body of your API call. Select from String or Multipart Form Data. | Optional |
Headers | Specifies some meta-data, eg: usernames and passwords | Optional |
Edit properties of your Web API
Once you have added at least one Web API component to your app, you will be able to view all of your Web API components under the Web APIs
drawer in the Advanced section of the Blocks tab.
To edit the properties of a Web API component, click on the ⚙ icon next to the component's name to bring up the properties dialog. You will be able to change the properties and click Submit to save your changes, or click Delete to delete the component.
Setting Query Parameters and Headers
Query parameters and headers can be set in the designer or in the blocks editor. In the example below you can add any property:value pair you want. You can add as many params to your app as you need, but each parameter has to be added one at a time.
In the blocks editor, it is possible to use the create object
block to add multiple property:value pairs simultaneously.
In addition to creating your own objects, it is also possible to use JSON to specify the property:value pairs for your query parameters or headers.
Get and Format (parse) Data
To retrieve data from an API, you simply need to use the Get
block.
Event | Description |
---|---|
Get ( | Performs an HTTP GET request using the Url property and retrieves the |
Most APIs will return data in JSON format, so we'll take a few moments to walk through a few examples of how to parse this data using our Object blocks.
Get Simple Properties
Example 1: Open Weather Map API
One of the most common output formats for APIs is JSON, short for Javascript Object Notation. The Open Weather Map API returns a JSON file like the one below.
In your JSON response, objects can be found within the "
quotes "
followed by a colon :
. The properties of the object is follows the colon :
but is within the {
curly brackets}
.
In the example above, "base"
, "dt"
, "id"
, "name"
and "cod"
are simple properties of the JSON response. "coord"
, "main"
, "wind"
, "clouds"
and "sys"
are properties of the overall response, but each of these properties is also an object with properties of its own, or nested properties, contained within the {
curly brackets }
. "weather"
is a one-item list which also contains an object.
Convert JSON to Object
The first step in parsing this response is converting the JSON response to an Object. Objects have properties (like name
) that we can retrieve and display in our app. Objects can be embedded within another object.
Get Property of Object
Once you have converted the JSON into objects, you can then specify the objects
and property
that you are interested in. To get the name of the city we are viewing weather data for ("name":
in line 22), we'll want to get the property name
of the response:
Get Nested Properties
If we wanted to get the temperature in Dhaka from the Open Weather API above, we would need to do the following:
Convert the JSON response to an object
Get the property
main
of the response objectGet the property
temp
ofmain
We can write this as getting the property main.temp
of the response object:
You can read about getting nested values from Objects here.
Get Properties from Lists
You can read about getting nested values and values from lists in Objects here. Let's work through an example.
Example 2: Google Maps Distance Matrix API
You can find a working example of this in the sample app, Ride.
The JSON output of the Google Maps Distance Matrix API seems similar to the Open Weather Map API with one notable exception: it includes objects, properties and lists. Lists are items bounded by [
square brackets ]
.
If you want to retrieve the "text"
property in line 13, you'll have to:
convert the JSON to an object
select the
"rows"
property of the objectselect the first item in the list
select the
"elements"
property of the rows objectselect the first item in the list
select the
"duration"
property of the elements objectselect the
"text"
property of the duration object
You can see the example below for how this would look using the Object and List blocks
This can also be written as the property rows[1].elements[1].duration.text
of the response:
Upload data
Uploading and deleting data is usually reserved for a private API that you or your organization owns
Event | Description |
---|---|
Put ( | Performs an HTTP PUT request using the Url property and retrieves the |
Post ( | Performs an HTTP POST request using the Url property and retrieves the |
Patch ( | Performs an HTTP PATCH request using the Url property and retrieves the |
Delete data
Event | Description |
---|---|
Delete ( | Performs an HTTP DELETE request using the Url property and retrieves the |
See Also
You can also post and receive messages between a web page and a Web Viewer using the Post Message function. Read more about that here.
Have feedback on this doc? Please take a moment to share your feedback here: Thunkable Docs Feedback. Your valuable insights will help us improve and better serve you in the future.
Last updated