{
	"info": {
		"_postman_id": "e6a2b3c4-d5e6-4f7a-8b9c-0d1e2f3a4b5c",
		"name": "EcomSource Product Intelligence API",
		"description": "Comprehensive Amazon Product Data & Real-time Intelligence API. Lookup product details, variations, dimensions, and live pricing using ASIN, UPC, or EAN across 16+ global marketplaces.",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"item": [
		{
			"name": "Product Search",
			"item": [
				{
					"name": "Single Product Lookup",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "X-Access-Key",
								"value": "{{access_key}}",
								"type": "text"
							},
							{
								"key": "X-Secret-Key",
								"value": "{{secret_key}}",
								"type": "text"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"identifier\": \"B0BTJD6LCL\",\n    \"identifierType\": \"asin\",\n    \"region\": \"US\",\n    \"refresh\": false\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/search/product",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"search",
								"product"
							]
						},
						"description": "Fetch full product catalog data including titles, descriptions, images, bullet points, weights, dimensions, and categories."
					},
					"response": []
				},
				{
					"name": "Bulk Product Lookup",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "X-Access-Key",
								"value": "{{access_key}}",
								"type": "text"
							},
							{
								"key": "X-Secret-Key",
								"value": "{{secret_key}}",
								"type": "text"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "[\n    {\n        \"identifier\": \"5706991016970\",\n        \"identifierType\": \"upc\"\n    },\n    {\n        \"identifier\": \"B0BTJD6LCL\",\n        \"identifierType\": \"asin\"\n    }\n]"
						},
						"url": {
							"raw": "{{baseUrl}}/search/bulk?locale=US",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"search",
								"bulk"
							],
							"query": [
								{
									"key": "locale",
									"value": "US"
								}
							]
						},
						"description": "Lookup multiple products in a single request. Provide an array of identifiers to retrieve data for each."
					},
					"response": []
				}
			]
		},
		{
			"name": "Live Pricing & Offers",
			"item": [
				{
					"name": "Real-time Offers & Buy Box",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "X-Access-Key",
								"value": "{{access_key}}",
								"type": "text"
							},
							{
								"key": "X-Secret-Key",
								"value": "{{secret_key}}",
								"type": "text"
							},
							{
								"key": "Content-Type",
								"value": "application/json",
								"type": "text"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"identifier\": \"B0BTJD6LCL\",\n    \"identifierType\": \"asin\",\n    \"region\": \"EU\",\n    \"countryCode\": \"UK\"\n}"
						},
						"url": {
							"raw": "{{baseUrl}}/search/offers",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"search",
								"offers"
							]
						},
						"description": "Fetch live pricing and offer summaries directly from Amazon. Supports ASIN lookups only."
					},
					"response": []
				}
			]
		}
	],
	"variable": [
		{
			"key": "baseUrl",
			"value": "https://api.ecomsource.ai/api/v1",
			"type": "string"
		},
		{
			"key": "access_key",
			"value": "your_access_key",
			"type": "string"
		},
		{
			"key": "secret_key",
			"value": "your_secret_key",
			"type": "string"
		}
	]
}
