Available geo services

A list of all publicly available methods for interacting with the API.

GET

Get cart available geo services -/cart/available-geo-services

Query method

GEThttp://apilocal.stableproxy.com/v2/cart/available-geo-services

Code examples

async function getCartAvailableGeoServices() {
   const baseUrl = 'http://apilocal.stableproxy.com/v2';
   const req = await fetch(baseUrl + '/cart/available-geo-services', {
         method: 'GET',
         headers: {
            'Content-Type': 'application/json'
         }
      }
   );
   
   const res = await req.json();
}

Examples of answers