Using Postman to call IP2Location IP Geolocation API

Using Postman to call IP2Location IP Geolocation APIIntro

Postman is a development tool you can use to test the calling of an API. We will demonstrate how to configure Postman with the IP2Location IP Geolocation API Swagger configuration to easily setup the request to the API.

Pre-requisites

First of all, you will need to download the Postman software and install it. Next, you’ll need to go to the IP2Location IP Geolocation API Swagger page at https://app.swaggerhub.com/apis/ip2location/ip2location-ip-geolocation/1.0 where you need to copy out the whole YAML configuration text. The YAML text is the part inside the red box below.

Using Postman to call IP2Location IP Geolocation API

Configuring Postman with the YAML text

Run the Postman software and you should see the below. If you get shown the Create New dialog, you can just close it.

Configuration

Click on the Import button at the top left and you should see the below. Click on Paste Raw Text in the Import dialog. Next, paste the YAML text from above then click on Import.

Using Postman to call IP2Location IP Geolocation API

You should now see the following. Click on the part inside the red box. That will expand the collection to show you all available APIs.

Using Postman to call IP2Location IP Geolocation API

First test of calling the API

Click on the API which is the IP Geolocation API. You will then see the parameters required to perform a GET request to this API.

Calling IP2Location IP Geolocation API

You can just replace the values in the VALUE column of the Params section with actual values that you wish to pass to the API. Let’s test this API with the following values:

Parameter name Parameter value
package WS24
ip 8.8.8.8
format json
key Your IP2Location API key

If you don’t have an API key, you can sign up for a trial API key at  https://www.ip2location.io and you can input it like below. You can uncheck the fields that we are not providing any values.

calling IP2Location IP Geolocation API

Upon pressing the Send button, you will receive the json result as below.

JSON result returned

Calling the API using a bulk input file

The previous section dealt with calling the API with a manually keyed in set of inputs. What if you have a file full of inputs you want to pass to the API? We will now show how to read inputs from a file to pass to the API.

For our example, we have a file called ip2locationtest.csv which looks like below. The CSV data file should have a header.

calling IP2Location IP Geolocation API in bulk

Before we run the bulk input file through the API, we need to create some tests to validate the results being returned from the API. Click on the Tests section and paste the following codes. The codes will test the return values of the 3 rows of input we have in our test file.

pm.test(“Usage Type Test”, function() {

var jsonData = pm.response.json();

pm.expect(jsonData.usage_type).to.eql(“DCH”);

});

Test data

To have the API work with dynamic values from the test file, we have to modify the following parameters to become variables. The variable names must follow the header names in the CSV file. The fields that we manually supplied values should now be using variables with the header names, i.e. {{ip}}. This means the dynamic values for these fields will come from their named counterpart in the CSV file. The curly braces are required to denote that these values are variables.

calling IP2Location API

Now we are ready to call the API using input from the bulk input file. Inside Postman, click on the Runner button at the top left of the program. The button is enclosed in the red box inside the above image.

The Collection Runner window should now be shown. Click on the IP2Location IP Geolocation collection. Next, click Select File to select the ip2locationtest.csv file from above. Then click on the blue Run button.

Calling IP2Location API

The test results are done and looks like all 3 input lines have passed the validation test.

IP2Location test result

Was this article helpful?

Related Articles