agentOS Api V2, Customer Login Call Group
letmc · Commerce
agentOS Api V2, Customer Login Call Group API
Authentication
Sample Requests
Gets information about the currently logged on customer.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/session?token=YOUR_TOKEN"import requests
params = {
"token": "YOUR_TOKEN"
}
response = requests.get(
"https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/session",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/session');
url.searchParams.set('token', 'YOUR_TOKEN');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/session")
q := baseURL.Query()
q.Set("token", "YOUR_TOKEN")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/session")
uri.query = URI.encode_www_form({
"token" => "YOUR_TOKEN"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/session?" . http_build_query([
"token" => "YOUR_TOKEN"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));All branches defined for a company
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/branch/branches?count=10&offset=0"import requests
params = {
"count": "10",
"offset": "0"
}
response = requests.get(
"https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/branch/branches",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/branch/branches');
url.searchParams.set('count', '10');
url.searchParams.set('offset', '0');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/branch/branches")
q := baseURL.Query()
q.Set("count", "10")
q.Set("offset", "0")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/branch/branches")
uri.query = URI.encode_www_form({
"count" => "10",
"offset" => "0"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/branch/branches?" . http_build_query([
"count" => "10",
"offset" => "0"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Get the accounting details for the landlord.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/landlord/accounting?token=YOUR_TOKEN"import requests
params = {
"token": "YOUR_TOKEN"
}
response = requests.get(
"https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/landlord/accounting",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/landlord/accounting');
url.searchParams.set('token', 'YOUR_TOKEN');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/landlord/accounting")
q := baseURL.Query()
q.Set("token", "YOUR_TOKEN")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/landlord/accounting")
uri.query = URI.encode_www_form({
"token" => "YOUR_TOKEN"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/letmc.com/customer/v2-customer/v2/customer/{shortName}/landlord/accounting?" . http_build_query([
"token" => "YOUR_TOKEN"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with agentOS Api V2, Customer Login Call Group?
agentOS Api V2, Customer Login Call Group is a Commerce API. Developers commonly use commerce APIs for:
- syncing product catalogues and inventory levels
- building price comparison and deal-finder tools
- processing orders and tracking shipments
- managing customer wishlists and reviews
- automating abandoned-cart and promotional emails
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. agentOS Api V2, Customer Login Call Group is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide