How to detect all the operators available in your country using Reloadly

Raphael Ugwu

Raphael Ugwu

2 min

When using Reloadly’s Airtime API, it makes sense to have an overview of every operator within your country – their details, discounts that apply to them and amounts that are recharged – both local and international.

This guide aims to show how you can achieve this by making a request to view the operator information. The steps that will be followed in this article are:

  • Getting your access token
  • Getting details of all the operators within your country

You can get your access token by following the steps in this quickstart.

Getting details of all the operators within your country

Assuming your country is Argentina and you want to view all the operators you can purchase top-ups from within Argentina, you can use Argentina’s two-letter ISO code to make a request to an endpoint that retrieves every operator within Argentina. 

The cURL code sample below shows how this can be done:

curl -i -X GET \
  'https://topups-sandbox.reloadly.com/operators/countries/AR' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

In the above example, a GET request has been made using Argentina’s ISO code. If the request is successful, you should have a response similar to this:

In the above example, a GET request has been made using Argentina’s ISO code. If the request is successful, you should have a response similar to this:

[
   {
      "id":736,
      "operatorId":736,
      "name":"Claro Argentina Bundles",
      "country":{
         "isoName":"AR",
         "name":"Argentina"
      },
      "fx":{
         "rate":0.2184,
         "currencyCode":"ARS"
      }
   },
   {
      "id":16,
      "operatorId":16,
      "name":"Movistar Argentina",
      "country":{
         "isoName":"AR",
         "name":"Argentina"
      },
      "fx":{
         "rate":0.24,
         "currencyCode":"ARS"
      }
   },
   {
      "id":737,
      "operatorId":737,
      "name":"Movistar Argentina Bundles",
      "country":{
         "isoName":"AR",
         "name":"Argentina"
      },
      "fx":{
         "rate":0.2136,
         "currencyCode":"ARS"
      }
   },
   {
      "id":17,
      "operatorId":17,
      "name":"Personal Argentina",
      "country":{
         "isoName":"AR",
         "name":"Argentina"
      },
      "fx":{
         "rate":0.168,
         "currencyCode":"ARS"
      }
   },
   {
      "id":739,
      "operatorId":739,
      "name":"Personal Argentina Bundles",
      "country":{
         "isoName":"AR",
         "name":"Argentina"
      },
      "fx":{
         "rate":0.2136,
         "currencyCode":"ARS"
      }
   },
   {
      "id":738,
      "operatorId":738,
      "name":"Tuenti Argentina",
      "country":{
         "isoName":"AR",
         "name":"Argentina"
      },
      "fx":{
         "rate":0.204,
         "currencyCode":"ARS"
      }
   }
]

The JSON response has been abbreviated for the sake of brevity in this guide

Thus the response above shows you an overview of every operator in Argentina and their details.

Resources

Reloadly Airtime API

Reloadly Developer Documentation

This might also interest you:

3 min
Gift cards have revolutionized the way we shop, reward, and engage customers. This article explores the key differences between open-loop and closed-loop gift cards—how open-loop cards offer universal flexibility while closed-loop cards drive brand loyalty. Understanding these distinctions can help businesses and consumers make smarter choices in the evolving digital payments landscape.
4 min
Building a startup is an all-consuming journey—one that requires deep financial knowledge, resilience in fundraising, empathy in leadership, strong sales skills, and a keen eye for hiring. Looking back, there are five things I wish I had known before launching my first company. From understanding cash flow and investor expectations to mastering the art of sales and team-building, these lessons could have saved me time, money, and stress. The early days demand total commitment, often at the cost of work-life balance, but that obsession is what it takes to succeed. If you're embarking on your own founder journey, these insights might just help you navigate the challenges ahead.

Content by developers to developers.

Subscribe to The Monthly Reload for Developers and start receiving all the developers’ updates.

The Monthly Reload: the newsletter for you

Subscribe to our Newsletter and don’t miss any news about our industry and products.

It’s time to build, make your first API call today