Find an API

Search public APIs with auth details & Postman guides

← All APIs

Shop

shop · Commerce

Commerce No Auth Free & Open ecommerce

Search for millions of products from the world's greatest brands.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Return more details about a list of products.

Return more details about a list of products.

https://api.apis.guru/v2/specs/shop.app/v1/openai/details?ids=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/shop.app/v1/openai/details?ids=example"
import requests
params = {
    "ids": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/shop.app/v1/openai/details",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/shop.app/v1/openai/details');
url.searchParams.set('ids', 'example');

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/shop.app/v1/openai/details")
	q := baseURL.Query()
	q.Set("ids", "example")
	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/shop.app/v1/openai/details")
uri.query = URI.encode_www_form({
  "ids" => "example"
})

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/shop.app/v1/openai/details?" . http_build_query([
    "ids" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Search for products

Search for products

https://api.apis.guru/v2/specs/shop.app/v1/openai/search?query=test&price_max=1&price_min=1&num_results=example&similar_to_id=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/shop.app/v1/openai/search?query=test&price_max=1&price_min=1&num_results=example&similar_to_id=example"
import requests
params = {
    "query": "test",
    "price_max": "1",
    "price_min": "1",
    "num_results": "example",
    "similar_to_id": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/shop.app/v1/openai/search",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/shop.app/v1/openai/search');
url.searchParams.set('query', 'test');
url.searchParams.set('price_max', '1');
url.searchParams.set('price_min', '1');
url.searchParams.set('num_results', 'example');
url.searchParams.set('similar_to_id', 'example');

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/shop.app/v1/openai/search")
	q := baseURL.Query()
	q.Set("query", "test")
	q.Set("price_max", "1")
	q.Set("price_min", "1")
	q.Set("num_results", "example")
	q.Set("similar_to_id", "example")
	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/shop.app/v1/openai/search")
uri.query = URI.encode_www_form({
  "query" => "test",
  "price_max" => "1",
  "price_min" => "1",
  "num_results" => "example",
  "similar_to_id" => "example"
})

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/shop.app/v1/openai/search?" . http_build_query([
    "query" => "test",
    "price_max" => "1",
    "price_min" => "1",
    "num_results" => "example",
    "similar_to_id" => "example"
]);
$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

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Shop?

Shop 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. Shop is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗