Intel Product Catalogue Service
intel · Commerce
This is the documentation for PIM Micro services. In order to use this tool you need to have Basic Auth credentials and a client id. If you dont have one, please make sure to request one by sending an email to the PIM MS team: [[email protected]](mailto:[email protected]?subject=PIMServices)
Authentication
Sample Requests
Use this to get codename details for Intel products. No pagination supported.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-codename?locale_geo_id=zh-TW"
import requests
params = {
"locale_geo_id": "zh-TW"
}
response = requests.get(
"https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-codename",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-codename');
url.searchParams.set('locale_geo_id', 'zh-TW');
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/intel.com/product-catalogue/0.1.0/api/products/get-codename")
q := baseURL.Query()
q.Set("locale_geo_id", "zh-TW")
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/intel.com/product-catalogue/0.1.0/api/products/get-codename")
uri.query = URI.encode_www_form({
"locale_geo_id" => "zh-TW"
})
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/intel.com/product-catalogue/0.1.0/api/products/get-codename?" . http_build_query([
"locale_geo_id" => "zh-TW"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Use this to fetch ordering info details for Intel products. No pagination supported.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-ordering-info?product_id=example&locale_geo_id=zh-TW"
import requests
params = {
"product_id": "example",
"locale_geo_id": "zh-TW"
}
response = requests.get(
"https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-ordering-info",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-ordering-info');
url.searchParams.set('product_id', 'example');
url.searchParams.set('locale_geo_id', 'zh-TW');
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/intel.com/product-catalogue/0.1.0/api/products/get-ordering-info")
q := baseURL.Query()
q.Set("product_id", "example")
q.Set("locale_geo_id", "zh-TW")
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/intel.com/product-catalogue/0.1.0/api/products/get-ordering-info")
uri.query = URI.encode_www_form({
"product_id" => "example",
"locale_geo_id" => "zh-TW"
})
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/intel.com/product-catalogue/0.1.0/api/products/get-ordering-info?" . http_build_query([
"product_id" => "example",
"locale_geo_id" => "zh-TW"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Use this to get basic details of products with pagination. Can be used to generate listing page for products.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-products?sort=desc&filters=example&page_no=1&per_page=10&highlights=example&product_id=example&category_id=example&locale_geo_id=zh-TW"
import requests
params = {
"sort": "desc",
"filters": "example",
"page_no": "1",
"per_page": "10",
"highlights": "example",
"product_id": "example",
"category_id": "example",
"locale_geo_id": "zh-TW"
}
response = requests.get(
"https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-products",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/intel.com/product-catalogue/0.1.0/api/products/get-products');
url.searchParams.set('sort', 'desc');
url.searchParams.set('filters', 'example');
url.searchParams.set('page_no', '1');
url.searchParams.set('per_page', '10');
url.searchParams.set('highlights', 'example');
url.searchParams.set('product_id', 'example');
url.searchParams.set('category_id', 'example');
url.searchParams.set('locale_geo_id', 'zh-TW');
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/intel.com/product-catalogue/0.1.0/api/products/get-products")
q := baseURL.Query()
q.Set("sort", "desc")
q.Set("filters", "example")
q.Set("page_no", "1")
q.Set("per_page", "10")
q.Set("highlights", "example")
q.Set("product_id", "example")
q.Set("category_id", "example")
q.Set("locale_geo_id", "zh-TW")
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/intel.com/product-catalogue/0.1.0/api/products/get-products")
uri.query = URI.encode_www_form({
"sort" => "desc",
"filters" => "example",
"page_no" => "1",
"per_page" => "10",
"highlights" => "example",
"product_id" => "example",
"category_id" => "example",
"locale_geo_id" => "zh-TW"
})
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/intel.com/product-catalogue/0.1.0/api/products/get-products?" . http_build_query([
"sort" => "desc",
"filters" => "example",
"page_no" => "1",
"per_page" => "10",
"highlights" => "example",
"product_id" => "example",
"category_id" => "example",
"locale_geo_id" => "zh-TW"
]);
$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 Intel Product Catalogue Service?
Intel Product Catalogue Service 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. Intel Product Catalogue Service is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?