LetMC Api V2, Free (Tier 1)
letmc · Commerce
LetMC Api V2, Free (Tier 1) API
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
A collection of all the areas for a company
A collection of all the areas for a company
https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/area/areas?count=10&offset=0
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/area/areas?count=10&offset=0"import requests
params = {
"count": "10",
"offset": "0"
}
response = requests.get(
"https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/area/areas",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/area/areas');
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/free-tier/v2-free-tier/v2/tier1/{shortName}/area/areas")
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/free-tier/v2-free-tier/v2/tier1/{shortName}/area/areas")
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/free-tier/v2-free-tier/v2/tier1/{shortName}/area/areas?" . 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
All branches defined for a company
All branches defined for a company
https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/branch/branches?count=10&offset=0
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{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/free-tier/v2-free-tier/v2/tier1/{shortName}/branch/branches",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{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/free-tier/v2-free-tier/v2/tier1/{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/free-tier/v2-free-tier/v2/tier1/{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/free-tier/v2-free-tier/v2/tier1/{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
A collection of all counties available for a company
A collection of all counties available for a company
https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/county/counties?count=10&offset=0
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/county/counties?count=10&offset=0"import requests
params = {
"count": "10",
"offset": "0"
}
response = requests.get(
"https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/county/counties",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/letmc.com/free-tier/v2-free-tier/v2/tier1/{shortName}/county/counties');
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/free-tier/v2-free-tier/v2/tier1/{shortName}/county/counties")
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/free-tier/v2-free-tier/v2/tier1/{shortName}/county/counties")
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/free-tier/v2-free-tier/v2/tier1/{shortName}/county/counties?" . 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));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with LetMC Api V2, Free (Tier 1)?
LetMC Api V2, Free (Tier 1) 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. LetMC Api V2, Free (Tier 1) is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide