Search
Last updated
Was this helpful?
Last updated
Was this helpful?
The amazon_search
source is designed to retrieve Amazon search result pages. To see the response example with retrieved data, download file in HTML format or check structured data output .
Explore output for each Amazon Search feature, offering a brief description, screenshot, parsed JSON code snippet, and a table defining each parsed field. Navigate through the details using the right-side navigation or scrolling down the page.
In the code examples below, we make a request to retrieve a result from amazon.nl
, which includes 2
search results pages, starting from page #2
, for the search term nirvana tshirt
. Additionally, the search is be limited to category ID: 16391693031
.
curl 'https://realtime.oxylabs.io/v1/queries' \
--user 'USERNAME:PASSWORD' \
-H 'Content-Type: application/json' \
-d '{
"source": "amazon_search",
"domain": "nl",
"query": "nirvana tshirt",
"start_page": 2,
"pages": 2,
"parse": true,
"sort_by": "featured",
"refinements": "p_123:256097",
"context": [
{
"key": "category_id",
"value": "16391693031"
}
]
}'
import requests
from pprint import pprint
# Structure payload.
payload = {
'source': 'amazon_search',
'domain': 'nl',
'query': 'nirvana tshirt',
'start_page': 2,
'pages': 2,
'parse': True,
'sort_by': 'featured',
'refinements': 'p_123:256097',
'context': [
{'key': 'category_id', 'value': 16391693031}
],
}
# Get response.
response = requests.request(
'POST',
'https://realtime.oxylabs.io/v1/queries',
auth=('USERNAME', 'PASSWORD'),
json=payload,
)
# Print prettified response to stdout.
pprint(response.json())
const https = require("https");
const username = "USERNAME";
const password = "PASSWORD";
const body = {
source: "amazon_search",
domain: "nl",
query: "nirvana tshirt",
start_page: 2,
pages: 2,
parse: true,
sort_by: "featured",
refinements: "p_123:256097",
context: [
{ key: "category_id", value: "16391693031" },
],
};
const options = {
hostname: "realtime.oxylabs.io",
path: "/v1/queries",
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization:
"Basic " + Buffer.from(`${username}:${password}`).toString("base64"),
},
};
const request = https.request(options, (response) => {
let data = "";
response.on("data", (chunk) => {
data += chunk;
});
response.on("end", () => {
const responseData = JSON.parse(data);
console.log(JSON.stringify(responseData, null, 2));
});
});
request.on("error", (error) => {
console.error("Error:", error);
});
request.write(JSON.stringify(body));
request.end();
https://realtime.oxylabs.io/v1/queries?source=amazon_search&domain=nl&query=nirvana%20tshirt&start_page=2&pages=2&sort_by=featured&refinements[0]=p_123:256097&parse=true&context[0][key]=category_id&context[0][value]=16391693031&access_token=12345abcde
<?php
$params = array(
'source' => 'amazon_search',
'domain' => 'nl',
'query' => 'nirvana tshirt',
'start_page' => 2,
'pages' => 2,
'parse' => true,
'sort_by' => 'featured',
'refinements' => 'p_123:256097',
'context' => [
['key' => 'category_id', 'value' => 16391693031]
]
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://realtime.oxylabs.io/v1/queries");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_USERPWD, "USERNAME" . ":" . "PASSWORD");
$headers = array();
$headers[] = "Content-Type: application/json";
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$result = curl_exec($ch);
echo $result;
if (curl_errno($ch)) {
echo 'Error:' . curl_error($ch);
}
curl_close($ch);
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
)
func main() {
const Username = "USERNAME"
const Password = "PASSWORD"
payload := map[string]interface{}{
"source": "amazon_search",
"domain": "nl",
"query": "nirvana tshirt",
"start_page": 2,
"pages": 2,
"parse": true,
"sort_by": "featured",
"refinements":"p_123:256097",
"context": []map[string]interface{}{
{"key": "category_id", "value": 16391693031},
},
}
jsonValue, _ := json.Marshal(payload)
client := &http.Client{}
request, _ := http.NewRequest("POST",
"https://realtime.oxylabs.io/v1/queries",
bytes.NewBuffer(jsonValue),
)
request.SetBasicAuth(Username, Password)
response, _ := client.Do(request)
responseText, _ := ioutil.ReadAll(response.Body)
fmt.Println(string(responseText))
}
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;
namespace OxyApi
{
class Program
{
static async Task Main()
{
const string Username = "USERNAME";
const string Password = "PASSWORD";
var parameters = new {
source = "amazon_search",
domain = "nl",
query = "nirvana tshirt",
start_page = 2,
pages = 2,
parse = true,
sort_by: "featured",
refinements: "p_123:256097",
context = new dynamic [] {
new { key = "category_id", value = 16391693031 },
}
};
var client = new HttpClient();
Uri baseUri = new Uri("https://realtime.oxylabs.io");
client.BaseAddress = baseUri;
var requestMessage = new HttpRequestMessage(HttpMethod.Post, "/v1/queries");
requestMessage.Content = JsonContent.Create(parameters);
var authenticationString = $"{Username}:{Password}";
var base64EncodedAuthenticationString = Convert.ToBase64String(System.Text.ASCIIEncoding.UTF8.GetBytes(authenticationString));
requestMessage.Headers.Add("Authorization", "Basic " + base64EncodedAuthenticationString);
var response = await client.SendAsync(requestMessage);
var contents = await response.Content.ReadAsStringAsync();
Console.WriteLine(contents);
}
}
}
package org.example;
import okhttp3.*;
import org.json.JSONArray;
import org.json.JSONObject;
import java.util.concurrent.TimeUnit;
public class Main implements Runnable {
private static final String AUTHORIZATION_HEADER = "Authorization";
public static final String USERNAME = "USERNAME";
public static final String PASSWORD = "PASSWORD";
public void run() {
JSONObject jsonObject = new JSONObject();
jsonObject.put("source", "amazon_search");
jsonObject.put("domain", "nl");
jsonObject.put("query", "nirvana tshirt");
jsonObject.put("start_page", 2);
jsonObject.put("pages", 2);
jsonObject.put("parse", true);
jsonObject.put("sort_by", "featured");
jsonObject.put("refinements", "p_123:256097");
jsonObject.put("context", new JSONArray().put(
new JSONObject()
.put("key", "category_id")
.put("value", "16391693031")
));
Authenticator authenticator = (route, response) -> {
String credential = Credentials.basic(USERNAME, PASSWORD);
return response
.request()
.newBuilder()
.header(AUTHORIZATION_HEADER, credential)
.build();
};
var client = new OkHttpClient.Builder()
.authenticator(authenticator)
.readTimeout(180, TimeUnit.SECONDS)
.build();
var mediaType = MediaType.parse("application/json; charset=utf-8");
var body = RequestBody.create(jsonObject.toString(), mediaType);
var request = new Request.Builder()
.url("https://realtime.oxylabs.io/v1/queries")
.post(body)
.build();
try (var response = client.newCall(request).execute()) {
if (response.body() != null) {
try (var responseBody = response.body()) {
System.out.println(responseBody.string());
}
}
} catch (Exception exception) {
System.out.println("Error: " + exception.getMessage());
}
System.exit(0);
}
public static void main(String[] args) {
new Thread(new Main()).start();
}
}
{
"source": "amazon_search",
"domain": "nl",
"query": "nirvana tshirt",
"start_page": 2,
"pages": 2,
"parse": true,
"sort_by": "featured",
"refinements": "p_123:256097",
"context": [
{
"key": "category_id",
"value": "16391693031"
}
]
}
Basic setup and customization options for scraping Amazon search results.
source
Sets the scraper.
amazon_search
query
UTF-encoded keyword.
-
render
-
parse
false
sort_by
Sets the sorting type of the search results page according to one of possible values in Amazon:
"most_recent"
, "price_low_to_high"
, "price_high_to_low"
, "featured"
, "average_review"
, "bestsellers"
.
-
refinements
A list of Amazon search refinement parameters used to apply specific filters to search results. These parameters correspond to Amazon's dynamic filtering options (e.g., brand, price range, features) and follow Amazon's internal parameter format such as p_123:256097
or p_n_feature_twenty-eight_browse-bin:98209020031
.
Since filtering options vary by category and are dynamically generated by Amazon, the recommended workflow is:
First, scrape the target Amazon search page with parse: true
to discover available refinement options
Extract the desired filter parameters from the parsed response
Use those parameters in subsequent requests via the refinements
field to apply specific filters
-
callback_url
-
user_agent_type
desktop
- mandatory parameter
Adapt results to specific geographical locations, domains, languages.
geo_location
-
domain
com
locale
-
Controls for managing the pagination and retrieval of search results.
start_page
Starting page number.
1
pages
Number of pages to retrieve.
1
Additional advanced settings and controls for specialized requirements.
context
:
category_id
Search for items in a particular browse node (product category).
-
context
:
merchant_id
Search for items sold by a particular seller.
-
context
:
currency
{
"source": "amazon_search",
"domain": "nl",
"query": "nirvana tshirt",
"sort_by": "featured",
"refinements": "p_123:256097",
"parse": true,
"context": [
{
"key": "currency",
"value": "AUD"
}
]
}
amazon_search
structured output "results": [
{
"content": {
"url": "https://www.amazon.com/s?k=nirvana tshirt&page=1",
"page": 1,
"query": "nirvana tshirt",
"results": {
"paid": [
{
"url": "https://aax-us-iad.amazon.com/x/c/JJkmeNPKYs4EvHZJpsz-T1AAAAGXMHRJBgEAAAH2AQBvbm9fdHhuX2JpZDYgICBvbm9fdHhuX2ltcDIgICBfRRHN/https://www.amazon.com/INTO-AM-Islands-Graphic-T-Shirt/dp/B085G65YJT/ref=sxin_16_sbv_search_btf?content-id=amzn1.sym.8aea4788-5372-43c5-bde7-3d239eb02a51:amzn1.sym.8aea4788-5372-43c5-bde7-3d239eb02a51&cv_ct_cx=nirvana+tshirt&keywords=nirvana+tshirt&pd_rd_i=B085G65YJT&pd_rd_r=9f683f75-043c-422e-9698-1ffbddaa9797&pd_rd_w=SfvTj&pd_rd_wg=l2Cej&pf_rd_p=8aea4788-5372-43c5-bde7-3d239eb02a51&pf_rd_r=N19WZRDBC10WN96NMY59&qid=1748864616&sbo=RZvfv//HxDF+O5021pAnSA==&sr=1-1-5190daf0-67e3-427c-bea6-c72c1df98776",
"asin": "B085G65YJT",
"price": 28.95,
"title": "INTO THE AM Cool Graphic T-Shirts for Men S - 4XL Premium Quality Unique Graphic Art Tees",
"rating": 4.7,
"rel_pos": 1,
"currency": "USD",
"is_video": true,
"url_image": "https://aax-us-iad.amazon.com/e/loi/imp?b=JJkmeNPKYs4EvHZJpsz-T1AAAAGXMHRJBgEAAAH2AQBvbm9fdHhuX2JpZDYgICBvbm9fdHhuX2ltcDIgICBfRRHN",
"best_seller": false,
"price_upper": 28.95,
"is_sponsored": true,
"manufacturer": "",
"sales_volume": "200+ bought in past month",
"pricing_count": 1,
"reviews_count": 5852,
"is_amazons_choice": false
},
{
"url": "https://aax-us-iad.amazon.com/x/c/JMnK9Qagwna73uV43C4lDLQAAAGXMHRJDAEAAAH2AQBvbm9fdHhuX2JpZDIgICBvbm9fdHhuX2ltcDIgICDCKsJB/https://www.amazon.com/Aelfric-Eden-Oversized-Streetwear-Contrast/dp/B0C9CJ19Y6/ref=sxbs_sbv_search_btf?content-id=amzn1.sym.2f0a8989-0b67-47e7-b61e-9e3ef9908602:amzn1.sym.2f0a8989-0b67-47e7-b61e-9e3ef9908602&cv_ct_cx=nirvana+tshirt&keywords=nirvana+tshirt&pd_rd_i=B0C9CJ19Y6&pd_rd_r=40b9a7b4-20ca-4a75-abe7-6286f347b215&pd_rd_w=5ELrT&pd_rd_wg=wOCbD&pf_rd_p=2f0a8989-0b67-47e7-b61e-9e3ef9908602&pf_rd_r=N19WZRDBC10WN96NMY59&qid=1748864616&sbo=RZvfv//HxDF+O5021pAnSA==&sr=1-1-a61ee601-6e56-4862-a8a2-1d3da5a5406f",
"asin": "B0C9CJ19Y6",
"price": 27.95,
"title": "Aelfric Eden Oversized T Shirt Men 90s Shirt Unisex Streetwear Contrast Color Graphic Tees Casual Vintage Summer Tops",
"rating": 4.4,
"rel_pos": 2,
"currency": "USD",
"is_video": true,
"url_image": "https://aax-us-iad.amazon.com/e/loi/imp?b=JMnK9Qagwna73uV43C4lDLQAAAGXMHRJDAEAAAH2AQBvbm9fdHhuX2JpZDIgICBvbm9fdHhuX2ltcDIgICDCKsJB",
"best_seller": false,
"price_upper": 27.95,
"is_sponsored": true,
"manufacturer": "",
"sales_volume": "100+ bought in past month",
"pricing_count": 1,
"reviews_count": 208,
"is_amazons_choice": false,
"price_strikethrough": 34.95
}
],
"organic": [
{
"pos": 1,
"url": "/GrayceTM-Your-Design-Here-T-Shirt/dp/B0CM2QJ9T5/ref=sr_1_1?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-1",
"asin": "B0CM2QJ9T5",
"price": 23,
"title": "Nirvana™ in Utero Angel Splatter T-Shirt - by Nirvana™ Splatter (US, Alpha",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/81MkKdYZFtL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 23,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "50+ bought in past month",
"pricing_count": 1,
"reviews_count": 297,
"is_amazons_choice": true,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 2,
"url": "/Nirvana-Smile-Sided-T-Shirt-Large/dp/B07BQ5JCP4/ref=sr_1_2?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-2",
"asin": "B07BQ5JCP4",
"price": 17.99,
"title": "mens T-shirt",
"rating": 4.6,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/613zyJBaYpL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 17.99,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "100+ bought in past month",
"pricing_count": 1,
"reviews_count": 1831,
"is_amazons_choice": false,
"price_strikethrough": 18.96,
"shipping_information": "FREE delivery Wed, Jun 4"
},
{
"pos": 3,
"url": "/Nirvana-Distressed-Vintage-Graphic-Natural/dp/B0DDMB967X/ref=sr_1_3?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-3",
"asin": "B0DDMB967X",
"price": 26.95,
"title": "Nirvana in Utero Distressed Logo Adult Short Sleeve T Shirt 90s Grunge Music Vintage Style Graphic Tees",
"rating": 4.8,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71urRRztTTL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 26.95,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "50+ bought in past month",
"pricing_count": 1,
"reviews_count": 67,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 4,
"url": "/FEA-Nirvana-Galaxy-Utero-T-Shirt/dp/B00H897L4Y/ref=sr_1_4?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-4",
"asin": "B00H897L4Y",
"price": 22.98,
"title": "Unisex-Adult Nirvana in Utero T-Shirt",
"rating": 4.4,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/61XmmFp6wCL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 22.98,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "50+ bought in past month",
"pricing_count": 1,
"reviews_count": 266,
"is_amazons_choice": false,
"price_strikethrough": 30,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 5,
"url": "/Nirvana-T-Shirt-Graphic-Classic-Distressed/dp/B0DB25M31W/ref=sr_1_5?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-5",
"asin": "B0DB25M31W",
"price": 26.95,
"title": "Mens T-Shirt | Adults Short Sleeve Graphic Tee in Black Options Grunge Distressed Band Logo Print Apparel Top",
"rating": 4.1,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71mN4-GjItL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 26.95,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 49,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 6,
"url": "/FEA-Nirvana-Galaxy-T-Shirt-Medium/dp/B00H898IO6/ref=sr_1_6?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-6",
"asin": "B00H898IO6",
"price": 24.97,
"title": "Unisex-Adult Utero T-Shirt",
"rating": 4.6,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/61XmmFp6wCL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 24.97,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "50+ bought in past month",
"pricing_count": 1,
"reviews_count": 160,
"is_amazons_choice": false,
"price_strikethrough": 30,
"shipping_information": "FREE delivery Tue, Jun 10 Or fastest delivery Tomorrow, Jun 3"
},
{
"pos": 7,
"url": "/MTV-Checkered-Distressed-Retro-T-Shirt/dp/B07SNQ2N6J/ref=sr_1_7?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-7",
"asin": "B07SNQ2N6J",
"price": 23.5,
"title": "Checkered Distressed Retro Logo Short Sleeve T-Shirt",
"rating": 4.5,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/61L+ReU6UEL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 23.5,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "500+ bought in past month",
"pricing_count": 1,
"reviews_count": 580,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 8,
"url": "/FEA-Nirvana-Concert-T-Shirt-Medium/dp/B001RNO3FC/ref=sr_1_8?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-8",
"asin": "B001RNO3FC",
"price": 21.7,
"title": "Men's Nirvana Live Concert Photo Men's T-Shirt",
"rating": 4.5,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/810SjKT-QVL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 21.7,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 267,
"is_amazons_choice": false,
"price_strikethrough": 30,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 9,
"url": "/2Bhip-Nirvana-Unplugged-Vintage-Graphic/dp/B0DDM8YB7Z/ref=sr_1_9?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-9",
"asin": "B0DDM8YB7Z",
"price": 26.95,
"title": "Nirvana MTV Unplugged 1993 Adult Short Sleeve T Shirt Vintage Style 90s Grunge Retro Style Graphic Tees",
"rating": 4.7,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/717DSq5-pVL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 26.95,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 28,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Jun 9 - 12 on $35 of items shipped by AmazonOr fastest delivery Jun 9 - 11"
},
{
"pos": 10,
"url": "/Nirvana-Reading-Sleeve-Vintage-Graphic/dp/B0DKR6P59G/ref=sr_1_10?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-10",
"asin": "B0DKR6P59G",
"price": 27.95,
"title": "Nirvana Live at Reading Front & Back Adult Black Short Sleeve T Shirt 90s Music Vintage Style Graphic Tee",
"rating": 4.5,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/710387BgvgL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 27.95,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 12,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 11,
"url": "/Nirvana-Shirt-Nevermind-Band-Official/dp/B08CZ65CLN/ref=sr_1_11?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-11",
"asin": "B08CZ65CLN",
"price": 24.99,
"title": "mens T-shirt",
"rating": 4.4,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/51eE2KnjMAL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 24.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 202,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Tue, Jun 10 Or fastest delivery Tomorrow, Jun 3"
},
{
"pos": 12,
"url": "/Nirvana-Smile-Sided-T-Shirt-Small/dp/B07BQ5JPRN/ref=sr_1_12?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-12",
"asin": "B07BQ5JPRN",
"price": 18.99,
"title": "Smile Face Logo T-Shirt - Black (Small)",
"rating": 4.6,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/613zyJBaYpL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 18.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 502,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Wed, Jun 4"
},
{
"pos": 13,
"url": "/Nirvana-State-Meditation-Graphic-T-Shirt/dp/B0CP3BKFMS/ref=sr_1_13?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-13",
"asin": "B0CP3BKFMS",
"price": 19.99,
"title": "Nirvana State Of Mind Meditation Funny Graphic Tees T-Shirt",
"rating": 4.7,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/718Pkm5eqyL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 19.99,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "50+ bought in past month",
"pricing_count": 1,
"reviews_count": 19,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 14,
"url": "/FEA-Cobain-Standing-T-Shirt-Heather/dp/B010TRWR90/ref=sr_1_14?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-14",
"asin": "B010TRWR90",
"price": 20.22,
"title": "Men's Kurt Cobain Standing By Bus Photo Mens T-Shirt",
"rating": 4.7,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/91xVh0+DIkL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 20.22,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 264,
"is_amazons_choice": false,
"price_strikethrough": 30,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 15,
"url": "/Nirvana-T-Shirt-Officially-Licensed-Merchandise/dp/B0D326HT7R/ref=sr_1_15?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-15",
"asin": "B0D326HT7R",
"price": 24.99,
"title": "Nirvana Men's Sorbet Ray Smile T-Shirt | Officially Licensed Merchandise",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/61hlq2n7OfL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 24.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 21,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by Amazon"
},
{
"pos": 16,
"url": "/MTV-Music-Television-Mushrooms-T-Shirt/dp/B091N3WQLG/ref=sr_1_16?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-16",
"asin": "B091N3WQLG",
"price": 19.99,
"title": "Music Television Wild Flower Mushrooms MTV Logo T-Shirt",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71KbsDnvX+L._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 19.99,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "1K+ bought in past month",
"pricing_count": 1,
"reviews_count": 133,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 17,
"url": "/Trendy-T-Shirt-Nirvana-Simple-Definition/dp/B07VKYF7SH/ref=sr_1_17?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-17",
"asin": "B07VKYF7SH",
"price": 19.99,
"title": "Nirvana Simple Definition T-Shirt",
"rating": 5,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71XQX3tl7yL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 19.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 6,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 18,
"url": "/Nirvana-Smiley-T-Shirt-Black-Medium/dp/B0170EG8DG/ref=sr_1_18?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-18",
"asin": "B0170EG8DG",
"price": 15.92,
"title": "mens Classic",
"rating": 4.4,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/61xiZsVDS2L._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 15.92,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 167,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Tue, Jun 10 Or fastest delivery Jun 5 - 9"
},
{
"pos": 19,
"url": "/Nirvana-Smile-Sided-T-Shirt-XX-Large/dp/B07BQ5HZ9P/ref=sr_1_19?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-19",
"asin": "B07BQ5HZ9P",
"price": 17.99,
"title": "Smile Face Logo T-Shirt - Black (XX-Large)",
"rating": 4.5,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/613zyJBaYpL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 17.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 367,
"is_amazons_choice": false,
"price_strikethrough": 18.99,
"shipping_information": "FREE delivery Tue, Jun 10 Or fastest delivery Jun 5 - 9"
},
{
"pos": 20,
"url": "/Nirvana-Playing-Sleeve-Vintage-Graphic/dp/B0DKQV2B76/ref=sr_1_20?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-20",
"asin": "B0DKQV2B76",
"price": 26.95,
"title": "Nirvana Logo & Playing on Stage Adult Navy Short Sleeve T Shirt 90s Music Vintage Style Graphic Tees",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71t1BC2-BjL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 26.95,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 13,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Wed, Jun 4"
},
{
"pos": 21,
"url": "/Vintage-Graphic-Country-Teacher-DG01RKR/dp/B0D2VT9R1Q/ref=sr_1_21?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-21",
"asin": "B0D2VT9R1Q",
"price": 14.99,
"title": "Women Vintage V Neck Shirts Rock and Roll Music Guitar Graphic T Shirt Country Music Tops Teacher Tee",
"rating": 4.5,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/51bV0QsjT4L._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 14.99,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "100+ bought in past month",
"pricing_count": 1,
"reviews_count": 175,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 22,
"url": "/FEA-Nirvana-T-Shirt-Charcoal-X-Large/dp/B00YGTB4OC/ref=sr_1_22?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-22",
"asin": "B00YGTB4OC",
"price": 24.97,
"title": "Men's Nirvana Brick Wall Band Photo T-Shirt",
"rating": 4.5,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/81se4bSx6TL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 24.97,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 625,
"is_amazons_choice": false,
"price_strikethrough": 30,
"shipping_information": "FREE delivery Tue, Jun 10 Or fastest delivery Tomorrow, Jun 3"
},
{
"pos": 23,
"url": "/Mademark-MTV-Guitar-Vintage-T-Shirt/dp/B0B9PZ3VYX/ref=sr_1_23?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-23",
"asin": "B0B9PZ3VYX",
"price": 18.99,
"title": "x MTV - MTV Rock n Roll Music Hard Heavy Metal Skull Guitar Vintage T-Shirt",
"rating": 4.7,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71Z2KyZD2fL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 18.99,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "600+ bought in past month",
"pricing_count": 1,
"reviews_count": 352,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 24,
"url": "/FEA-Merchandising-Nirvana-T-Shirt-Heather/dp/B00NO0BU7U/ref=sr_1_24?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-24",
"asin": "B00NO0BU7U",
"price": 20.46,
"title": "Men's Floral Logo T-Shirt",
"rating": 4.2,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/91+7V1kMg6L._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 20.46,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 67,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 25,
"url": "/Nirvana-Smile-Sided-T-shirt-Medium/dp/B017DRESLE/ref=sr_1_25?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-25",
"asin": "B017DRESLE",
"price": 18.99,
"title": "Men's Smile One Sided Slim Fit T-shirt Medium Black",
"rating": 4.7,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/61ckOnTtRyL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 18.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 111,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Tomorrow, Jun 3"
},
{
"pos": 26,
"url": "/Nirvana-Shirt-Utero-Angelic-Official/dp/B081WNYP1G/ref=sr_1_26?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-26",
"asin": "B081WNYP1G",
"price": 17.59,
"title": "Men's T-Shirt",
"rating": 4.5,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/61aMGU2YggL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 17.59,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 545,
"is_amazons_choice": false,
"price_strikethrough": 24.99,
"shipping_information": "$4.99 delivery Thu, Jun 12 Or fastest delivery Jun 9 - 11"
},
{
"pos": 27,
"url": "/MTV-Retro-Design-Graphic-T-Shirt/dp/B07JB4R3P9/ref=sr_1_27?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-27",
"asin": "B07JB4R3P9",
"price": 23.5,
"title": "Retro Shape Design Logo Graphic T-Shirt T-Shirt",
"rating": 4.5,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71VvXsU0MfL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 23.5,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "600+ bought in past month",
"pricing_count": 1,
"reviews_count": 4234,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 28,
"url": "/Fender-Vintage-Guitar-Lineup-T-Shirt/dp/B09ZQ481J3/ref=sr_1_28?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-28",
"asin": "B09ZQ481J3",
"price": 19.99,
"title": "Vintage Guitar Lineup T-Shirt",
"rating": 4.7,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71QofGjgDFL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 19.99,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "700+ bought in past month",
"pricing_count": 1,
"reviews_count": 426,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 29,
"url": "/Rolling-Stones-Official-Script-T-Shirt/dp/B07XYPSLXR/ref=sr_1_29?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-29",
"asin": "B07XYPSLXR",
"price": 24.99,
"title": "Rolling Stones Official Script Tongue T-Shirt",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71nXh6A30FL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 24.99,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "1K+ bought in past month",
"pricing_count": 1,
"reviews_count": 3264,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 30,
"url": "/Nirvana-Nevermind-Print-T-Shirt-Large/dp/B08KFK3414/ref=sr_1_30?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-30",
"asin": "B08KFK3414",
"price": 26.99,
"title": "Men's Nevermind (Back Print) Slim Fit T-Shirt Navy",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/61ojCQBFHBL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 26.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 57,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 31,
"url": "/MTV-Moon-Logo-Graphic-T-Shirt/dp/B07JBNR42H/ref=sr_1_31?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-31",
"asin": "B07JBNR42H",
"price": 23.5,
"title": "Man On The Moon Logo Flag Graphic Short Sleeve T-Shirt",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71mkpxruy4L._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 23.5,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "300+ bought in past month",
"pricing_count": 1,
"reviews_count": 1223,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 32,
"url": "/Cobain-Photo-Sleeve-Vintage-Graphic/dp/B0DKQPLS4J/ref=sr_1_32?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-32",
"asin": "B0DKQPLS4J",
"price": 26.95,
"title": "Nirvana Tshirt Kurt Cobain Photo Adult Sport Gray Short Sleeve T Shirt 90s Music Vintage Style Graphic Tees",
"rating": 4.9,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/81E6dv1pAAL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 26.95,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 11,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 33,
"url": "/FEA-Merchandising-Nirvana-T-Shirt-Heather/dp/B00NO0BUFC/ref=sr_1_33?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-33",
"asin": "B00NO0BUFC",
"price": 24.95,
"title": "Men's Standard Floral Logo T-Shirt",
"rating": 4.4,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/91+7V1kMg6L._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 24.95,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 90,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 34,
"url": "/Nirvana-Rainbow-T-Shirt-Graphic-Children/dp/B0D9M9KNKY/ref=sr_1_34?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-34",
"asin": "B0D9M9KNKY",
"price": 17,
"title": "Rainbow Kids T-Shirt | Grey Rainbow Logo Graphic Tee | Short Sleeve Unisex Shirt for Children | Rock Band",
"rating": 4.8,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/714fAJfGCpL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 17,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 47,
"is_amazons_choice": false,
"price_strikethrough": 21.95,
"shipping_information": "$6.95 delivery Jun 10 - 17"
},
{
"pos": 35,
"url": "/Nirvana-Nevermind-Print-T-Shirt-Medium/dp/B08KFJTK5Q/ref=sr_1_35?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-35",
"asin": "B08KFJTK5Q",
"price": 26.99,
"title": "Nirvana Men's Nevermind (Back Print) Slim Fit T-Shirt Medium Navy",
"rating": 4.2,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/61ojCQBFHBL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 26.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 38,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 36,
"url": "/Nirvana-Smile-Sided-T-shirt-Large/dp/B017V51QQS/ref=sr_1_36?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-36",
"asin": "B017V51QQS",
"price": 18.99,
"title": "Men's Smile One Sided Slim Fit T-shirt Large Black",
"rating": 4.3,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/61ckOnTtRyL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 18.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 87,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Tomorrow, Jun 3"
},
{
"pos": 37,
"url": "/Pierce-Veil-Pass-Nirvana-T-Shirt/dp/B0BVDNZCZG/ref=sr_1_37?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-37",
"asin": "B0BVDNZCZG",
"price": 25,
"title": "Unisex-Adult Black Crew Neck T-Shirt - Small - Pass The Nirvana",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71R97rM3nfL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 25,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "100+ bought in past month",
"pricing_count": 1,
"reviews_count": 42,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 38,
"url": "/FEA-Nirvana-Smiley-T-Shirt-X-Large/dp/B0002TNEAW/ref=sr_1_38?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-38",
"asin": "B0002TNEAW",
"price": 30,
"title": "Men's Standard Nirvana Smiley Logo Double Sided T-Shirt, Black, X-Large",
"rating": 4.4,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/61zszZ3zbjL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 30,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 196,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 39,
"url": "/Nirvana-Smile-Sided-T-shirt-X-Large/dp/B017DRER4C/ref=sr_1_39?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-39",
"asin": "B017DRER4C",
"price": 18.95,
"title": "Men's Smile One Sided Slim Fit T-shirt X-Large Black",
"rating": 4.5,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/61ckOnTtRyL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 18.95,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 88,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Tomorrow, Jun 3"
},
{
"pos": 40,
"url": "/Smells-Like-Teen-Spirit-T-Shirt/dp/B0CB75Q77P/ref=sr_1_40?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-40",
"asin": "B0CB75Q77P",
"price": 18.99,
"title": "Smells Like Teen Spirit T-Shirt",
"rating": 5,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71jsDpFW-UL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 18.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 3,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 41,
"url": "/Purrvana-Cat-Lover-Gift-T-Shirt/dp/B07Y89SL5W/ref=sr_1_41?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-41",
"asin": "B07Y89SL5W",
"price": 19.99,
"title": "Purrvana Cat Lover Funny Humor T-Shirt",
"rating": 4.8,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/61F1DQwluRL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 19.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 3,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 42,
"url": "/Nirvana-Sleeve-Grunge-Vintage-Graphic/dp/B0DV27CXY9/ref=sr_1_42?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-42",
"asin": "B0DV27CXY9",
"price": 23.95,
"title": "Nirvana T Shirt in Utero Cover Adult Royal Blue Short Sleeve 90s Grunge Music Vintage Style Graphic Tees",
"rating": 4.3,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/815DVNt+8EL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 23.95,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 9,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
},
{
"pos": 43,
"url": "/Nirvana-XX-Large-Officially-Licensed-Merchandise/dp/B0D9C9MTWN/ref=sr_1_43?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-43",
"asin": "B0D9C9MTWN",
"price": 25.99,
"title": "Nirvana Men's Live in Concert Photo T-Shirt | Officially Licensed Merchandise",
"rating": 4.7,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/71RI3dC4wBL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 25.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 4,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Wed, Jun 4"
},
{
"pos": 44,
"url": "/Unplugged-2X-Large-Officially-Licensed-Merchandise/dp/B0D9PCQRWK/ref=sr_1_44?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-44",
"asin": "B0D9PCQRWK",
"price": 25.99,
"title": "Nirvana Unplugged Live Photo Juniors Girl T-Shirt Black | Officially Licensed Merchandise",
"rating": 3.7,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/510UlUuS0bL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 25.99,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 5,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Fri, Jun 6"
},
{
"pos": 45,
"url": "/Nirvana-Sorbet-Smiley-Official-Womens/dp/B0B9YFRGYR/ref=sr_1_45?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-45",
"asin": "B0B9YFRGYR",
"price": 28,
"title": "womens T-shirt",
"rating": 4.3,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/510Cwe3isRL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 28,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 8,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Thu, Jun 12 Or fastest delivery Wed, Jun 4"
},
{
"pos": 46,
"url": "/Nirvana-Galaxy-Utero-T-Shirt-Size/dp/B00H8985R6/ref=sr_1_46?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-46",
"asin": "B00H8985R6",
"price": 24.77,
"title": "Nirvana Unisex-Adult Standard Utero T-Shirt, Asphalt, XX-Large",
"rating": 4.2,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/8125acSP+4L._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 24.77,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 38,
"is_amazons_choice": false,
"price_strikethrough": 30,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Thu, Jun 5"
},
{
"pos": 47,
"url": "/FEA-novelty-shirts-White-Small/dp/B00WHWF4BE/ref=sr_1_47?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-47",
"asin": "B00WHWF4BE",
"price": 24.97,
"title": "Men's Kurt Cobain Smoking Black and White Photo T-Shirt",
"rating": 4.5,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/81vV8Jrk4WS._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 24.97,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 141,
"is_amazons_choice": false,
"price_strikethrough": 30,
"shipping_information": "FREE delivery Tue, Jun 10 Or fastest delivery Tomorrow, Jun 3"
},
{
"pos": 48,
"url": "/Old-Glory-Nirvana-Serpent-T-Shirt/dp/B00E5PYAAW/ref=sr_1_48?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-48",
"asin": "B00E5PYAAW",
"price": 28.73,
"title": "Unisex-Adult Standard Men's Serpent T-Shirt",
"rating": 4.3,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/81IlxTvYqOL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 28.73,
"is_sponsored": false,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 67,
"is_amazons_choice": false,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
}
],
"suggested": [],
"amazons_choices": [
{
"pos": 1,
"url": "/GrayceTM-Your-Design-Here-T-Shirt/dp/B0CM2QJ9T5/ref=sr_1_1?dib=eyJ2IjoiMSJ9.O-FB6EEDsdPVK-dDjnAjiLlABO3haXmG0Ye9gCbshKVw0OWrVB47JhGYhPq7F7MzaLGou3AMkkEdlPW5Mkhwt-e6JGysd341BMG1IYmLXEpj1QyjcYqT_zzzL0wN79w9kQVymSCL3Lug015qP8nQgawRG7vCiiEaxopHm7t6S7xQ6AJDE1CyNY-jdJGDxhZh2pEi-iwRD3EwWHjpVXp05mtZj-Bd17TYuOZDpm1NnufLGo_St6XVM_PT0mborUpyPozmWQpJ2YXO_xiK78MlJMkQSoDaXAzQIMgY4bGnSh8.6B1hR7mitilEdXMf_edFJkoOBTtAB_yELeTYf3B2vsk&dib_tag=se&keywords=nirvana+tshirt&qid=1748864616&sr=8-1",
"asin": "B0CM2QJ9T5",
"price": 23,
"title": "Nirvana™ in Utero Angel Splatter T-Shirt - by Nirvana™ Splatter (US, Alpha",
"rating": 4.6,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/81MkKdYZFtL._AC_UL320_.jpg",
"best_seller": false,
"price_upper": 23,
"is_sponsored": false,
"manufacturer": "",
"sales_volume": "50+ bought in past month",
"pricing_count": 1,
"reviews_count": 297,
"is_amazons_choice": true,
"shipping_information": "FREE delivery Sat, Jun 7 on $35 of items shipped by AmazonOr fastest delivery Tomorrow, Jun 3"
}
]
},
"refinements": {
"color": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343349011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_1&ds=v1%3A8MCORV9QCm%2BH5b7ulOMu7B0ghalXVBgcoGNzfhxLE5g",
"name": "Apply Black filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343349011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343350011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_2&ds=v1%3AOFz5cj5PaTTRP920t2kR0tGTu4nyT%2BLJXcNsBbOTgFg",
"name": "Apply Blues filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343350011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343355011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_3&ds=v1%3A74a%2BPaZbhdeSD4fAGhyR7wUo8q9ndur96RSdxYhVl3w",
"name": "Apply Greens filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343355011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343354011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_4&ds=v1%3A2%2FRsJgrYSZC%2FAt4zi1eKIak7L0ZCwfOB5JN0diPR6Rk",
"name": "Apply Greys filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343354011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343363011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_5&ds=v1%3AiUNba1xJNgtgX1nWyRNhXYRXp4HnTmUGwYtd%2FWZQtrU",
"name": "Apply White filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343363011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343351011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_6&ds=v1%3AhwkCDWQ7NO6C5yE%2FWvnsyc%2Ffma%2B6HN233%2BIHCKuAfnk",
"name": "Apply Browns filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343351011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343348011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_7&ds=v1%3AHJh2w0RTAe3x6buLVzzmP7MR0ROWTDXkkzMbjN90g2Q",
"name": "Apply Beige filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343348011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343361011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_8&ds=v1%3A4zYtSlMWgsHzmKSQsDNjKNEIIg3G7GReALhFaKuKuCI",
"name": "Apply Reds filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343361011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343359011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_9&ds=v1%3AqizQqQaJKPVn%2Bog7M%2FaOwRiUFdggVo7A26%2FpgP76B4g",
"name": "Apply Pinks filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343359011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343358011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_10&ds=v1%3ASdUa7WQEvxYnFaHg0krj3ajkFf%2F5aROSpQC%2FZz2%2BH2U",
"name": "Apply Oranges filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343358011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343364011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_11&ds=v1%3Az%2FSFKZuMjTCVWLgnnt5SqJLKz9SFy9%2BptPxeIkdJewo",
"name": "Apply Yellows filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343364011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343356011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_12&ds=v1%3AipcgiklvFCeoiFsPiLzvgiosnyIlqZd9cevbFwySq1A",
"name": "Apply Ivory filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343356011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343360011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_13&ds=v1%3ANJyshp3y8N%2B1ixBRaIwz296Q06%2BtwRLQhlWGPPlQjjU",
"name": "Apply Purples filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343360011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343353011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_14&ds=v1%3AJpvJNcFTeZhTNKzYIyA9IquirG75Jqm04lceS%2FWxkww",
"name": "Apply Golds filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343353011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343362011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_15&ds=v1%3AeZJyT7zQlzqxiJfRM%2BRLS7Jf80Unficl2Mz62UVeAKA",
"name": "Apply Silvers filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343362011",
"refinement_display_name": "Color"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_size_browse-vebin%3A2343357011&dc&qid=1748864616&rnid=2343347011&ref=sr_nr_p_n_size_browse-vebin_16&ds=v1%3AYMvGxdEOBiH6QtXt263L2vr7NzbjOzzuewrPrPbTkRA",
"name": "Apply Multi filter to narrow results",
"value": "n:7141123011,p_n_size_browse-vebin/2343357011",
"refinement_display_name": "Color"
}
],
"brands": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_123%3A798807&dc&qid=1748864616&rnid=85457740011&ref=sr_nr_p_123_1&ds=v1%3AfygVTnGpUJLn%2BVb3YcdcTSAqK309ypqSOBtOKESw0c8",
"name": "Nirvana",
"value": "n:7141123011,p_123/798807",
"refinement_display_name": "Brands"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_123%3A380467&dc&qid=1748864616&rnid=85457740011&ref=sr_nr_p_123_2&ds=v1%3AUU%2F0B%2ByCPdS92Wo7wJixAbW0AuOE3jRaN2PsGjz7WEU",
"name": "FEA",
"value": "n:7141123011,p_123/380467",
"refinement_display_name": "Brands"
}
],
"gender": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_thirty-two_browse-bin%3A121075132011&dc&qid=1748864616&rnid=121075130011&ref=sr_nr_p_n_feature_thirty-two_browse-bin_1&ds=v1%3AhTSIVZAGR96X%2BjPFNt5j6hiX5eVHjDDW1jU6iP3Jhjs",
"name": "Men",
"value": "n:7141123011,p_n_feature_thirty-two_browse-bin/121075132011",
"refinement_display_name": "Gender"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_thirty-two_browse-bin%3A121075131011&dc&qid=1748864616&rnid=121075130011&ref=sr_nr_p_n_feature_thirty-two_browse-bin_2&ds=v1%3Ajd2dN0GNlSpcrja6BA%2F%2BLxEnpxZwmdTK27y1q%2FEIbd0",
"name": "Women",
"value": "n:7141123011,p_n_feature_thirty-two_browse-bin/121075131011",
"refinement_display_name": "Gender"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_thirty-two_browse-bin%3A121075136011&dc&qid=1748864616&rnid=121075130011&ref=sr_nr_p_n_feature_thirty-two_browse-bin_3&ds=v1%3A%2BZ9TkOo2Wm6Sc0yTSOCy9%2B%2FbVTd1bm3KgLRgvZdRDts",
"name": "Boys",
"value": "n:7141123011,p_n_feature_thirty-two_browse-bin/121075136011",
"refinement_display_name": "Gender"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_thirty-two_browse-bin%3A121075133011&dc&qid=1748864616&rnid=121075130011&ref=sr_nr_p_n_feature_thirty-two_browse-bin_4&ds=v1%3Ag1Ex7lmodHPiWZe7sUDqVa8rWEjPJT9sAd1KK3NfPiw",
"name": "Girls",
"value": "n:7141123011,p_n_feature_thirty-two_browse-bin/121075133011",
"refinement_display_name": "Gender"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_thirty-two_browse-bin%3A121833111011&dc&qid=1748864616&rnid=121075130011&ref=sr_nr_p_n_feature_thirty-two_browse-bin_5&ds=v1%3AqREbh9MU2eAbWN89P7%2Fh69NQWwYc0tgmhFk%2FxSdzqZw",
"name": "Babies",
"value": "n:7141123011,p_n_feature_thirty-two_browse-bin/121833111011",
"refinement_display_name": "Gender"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_thirty-two_browse-bin%3A121833112011&dc&qid=1748864616&rnid=121075130011&ref=sr_nr_p_n_feature_thirty-two_browse-bin_6&ds=v1%3ABG%2B0BrcafOQT5ikKOaz9g2JtHJecsI7maRRd%2FMkT7Js",
"name": "Unisex",
"value": "n:7141123011,p_n_feature_thirty-two_browse-bin/121833112011",
"refinement_display_name": "Gender"
}
],
"seller": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_6%3AATVPDKIKX0DER&dc&qid=1748864616&rnid=2661622011&ref=sr_nr_p_6_1&ds=v1%3Aps9qZhfHIbvTmH1BIbjiOP2pW0bwPnvE73Nz9akjuQ8",
"name": "Amazon.com",
"value": "n:7141123011,p_6/ATVPDKIKX0DER",
"refinement_display_name": "Seller"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_6%3AA3R27QEC0NUQ1F&dc&qid=1748864616&rnid=2661622011&ref=sr_nr_p_6_2&ds=v1%3Azt9v4DrawMVlTpqGuzeuXN7tvnMeStihU0ZMkd4gQD8",
"name": "CMhin",
"value": "n:7141123011,p_6/A3R27QEC0NUQ1F",
"refinement_display_name": "Seller"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_6%3AA2179KQ6VWAUUA&dc&qid=1748864616&rnid=2661622011&ref=sr_nr_p_6_3&ds=v1%3AoLeZCutcWhFMD%2Bt%2Fz4z99BuRC2e49o3yK7T2lsE2cwg",
"name": "LicensedTeeShirts",
"value": "n:7141123011,p_6/A2179KQ6VWAUUA",
"refinement_display_name": "Seller"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_6%3AA2CHMNY6T1WOZV&dc&qid=1748864616&rnid=2661622011&ref=sr_nr_p_6_4&ds=v1%3A09YzaUx3j5dQlyreXC%2FzfE3wKplsqVkYNOFnWSFN7LQ",
"name": "AOADMN",
"value": "n:7141123011,p_6/A2CHMNY6T1WOZV",
"refinement_display_name": "Seller"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_6%3AA20NP16MA9JUJI&dc&qid=1748864616&rnid=2661622011&ref=sr_nr_p_6_5&ds=v1%3ACRakCwn%2Fv5VuxfSJ8CAt%2BNC1yzFCLnck1YG7xMcygPA",
"name": "Paradiso Clothing",
"value": "n:7141123011,p_6/A20NP16MA9JUJI",
"refinement_display_name": "Seller"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_6%3AAPV6T4RKTKPW0&dc&qid=1748864616&rnid=2661622011&ref=sr_nr_p_6_6&ds=v1%3A7yMM6uWYvODCcPBqgkrO4e25BjFQ8xkl7c0P%2FwW%2F2KA",
"name": "Dress Code Clothing",
"value": "n:7141123011,p_6/APV6T4RKTKPW0",
"refinement_display_name": "Seller"
}
],
"fit_type": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_four_browse-bin%3A43549681011&dc&qid=1748864616&rnid=23931923011&ref=sr_nr_p_n_feature_four_browse-bin_1&ds=v1%3AzqrXSjvaAvTP6xEbg0S57QOfWWxyncJ7AQpLQFhk%2Bqs",
"name": "Regular Fit",
"value": "n:7141123011,p_n_feature_four_browse-bin/43549681011",
"refinement_display_name": "Fit Type"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_four_browse-bin%3A43549679011&dc&qid=1748864616&rnid=23931923011&ref=sr_nr_p_n_feature_four_browse-bin_2&ds=v1%3AJL5P02F4OERcbbIwYopVoH%2B6g%2FLySK5lA1H5Tzpa4A4",
"name": "Classic Fit",
"value": "n:7141123011,p_n_feature_four_browse-bin/43549679011",
"refinement_display_name": "Fit Type"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_four_browse-bin%3A23932018011&dc&qid=1748864616&rnid=23931923011&ref=sr_nr_p_n_feature_four_browse-bin_3&ds=v1%3AbhPs%2BNOyWJ%2BFjAL4lYRy66U8mOFM%2FeXFXduWxBEyRXQ",
"name": "Fitted",
"value": "n:7141123011,p_n_feature_four_browse-bin/23932018011",
"refinement_display_name": "Fit Type"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_four_browse-bin%3A43549682011&dc&qid=1748864616&rnid=23931923011&ref=sr_nr_p_n_feature_four_browse-bin_4&ds=v1%3AJti2nvkwsfDDhsTf8wCMI3emV5kqHn4I%2BHhhmIIIQqU",
"name": "Loose Fit",
"value": "n:7141123011,p_n_feature_four_browse-bin/43549682011",
"refinement_display_name": "Fit Type"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_four_browse-bin%3A43549675011&dc&qid=1748864616&rnid=23931923011&ref=sr_nr_p_n_feature_four_browse-bin_5&ds=v1%3AGBgSt2cqTi6U5HTO%2BXXE7NcvXcXv%2BiDd6RsRgGNgzN8",
"name": "Relaxed Fit",
"value": "n:7141123011,p_n_feature_four_browse-bin/43549675011",
"refinement_display_name": "Fit Type"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_four_browse-bin%3A43549683011&dc&qid=1748864616&rnid=23931923011&ref=sr_nr_p_n_feature_four_browse-bin_6&ds=v1%3AeU79GBHlWaX%2FgnhB%2BSc2%2B6MuDSIqzHis9sEQYfNFjqI",
"name": "Skinny Fit",
"value": "n:7141123011,p_n_feature_four_browse-bin/43549683011",
"refinement_display_name": "Fit Type"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_four_browse-bin%3A43549674011&dc&qid=1748864616&rnid=23931923011&ref=sr_nr_p_n_feature_four_browse-bin_7&ds=v1%3AQhYrAVv9VYYPwSgxdTeMtKSKfE0RM6LqqK3CQ%2B6KNDI",
"name": "Slim Fit",
"value": "n:7141123011,p_n_feature_four_browse-bin/43549674011",
"refinement_display_name": "Fit Type"
}
],
"department": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A9056987011&dc&qid=1748864616&rnid=2941120011&ref=sr_nr_n_1&ds=v1%3Afa442VHW%2BJAV%2B5IPgsCbLti4Xk6AF56Qd3EcfR0Qr7A",
"name": "Men's Novelty T-Shirts",
"value": "n:9056987011",
"refinement_display_name": "Department"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7147441011&dc&qid=1748864616&rnid=2941120011&ref=sr_nr_n_2&ds=v1%3A8BMugiL9HimXeuTsYjZRS%2BSxvQGJ7FwwaUaPsKzTDSg",
"name": "Men's Fashion",
"value": "n:7147441011",
"refinement_display_name": "Department"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7147440011&dc&qid=1748864616&rnid=2941120011&ref=sr_nr_n_3&ds=v1%3AS59AspW1WT6qASgGy0vNfOitHUhf%2BMZvKuq0RmY%2FP0k",
"name": "Women's Fashion",
"value": "n:7147440011",
"refinement_display_name": "Department"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7147440011%2Cn%3A1044544&dc&qid=1748864616&rnid=2941120011&ref=sr_nr_n_4&ds=v1%3AtVHF%2FIpibwhyvuujElSVA8dnGbreZdMXMjr0sI8cY3g",
"name": "Women's T-Shirts",
"value": "n:7147440011,n:1044544",
"refinement_display_name": "Department"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A9056923011&dc&qid=1748864616&rnid=2941120011&ref=sr_nr_n_5&ds=v1%3ANGEGtAPhOUk0aXGge9J%2BrnXgvolKPu1WRd48k%2BGT2to",
"name": "Women's Novelty T-Shirts",
"value": "n:9056923011",
"refinement_display_name": "Department"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7147443011&dc&qid=1748864616&rnid=2941120011&ref=sr_nr_n_6&ds=v1%3AJbydoMSy89fqBq4HDvsQyWpwOkwfOSQ3OXpQUXZd9sk",
"name": "Boys' Fashion",
"value": "n:7147443011",
"refinement_display_name": "Department"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A9057094011&dc&qid=1748864616&rnid=2941120011&ref=sr_nr_n_7&ds=v1%3AZyfNiaGEDgK38L6duSLUxX5sLh4vyppGQEAZ0BFD5%2BM",
"name": "Boys' Novelty T-Shirts",
"value": "n:9057094011",
"refinement_display_name": "Department"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A9057040011&dc&qid=1748864616&rnid=2941120011&ref=sr_nr_n_8&ds=v1%3AgOZDlyTmOBu1O16ye7xsN6CsGTcU%2FzEF57b917BkaBc",
"name": "Girls' Novelty T-Shirts",
"value": "n:9057040011",
"refinement_display_name": "Department"
}
],
"delivery_day": [
{
"link": "/s?k=nirvana+tshirt&rh=p_90%3A8308921011&dc&qid=1748864616&rnid=8308919011&ref=sr_nr_p_90_1&ds=v1%3AoMnfELDJ60%2FbmTStO2hs0H%2Bszc7WFhJTu6j%2BAiGPWMY",
"name": "Get It by Tomorrow",
"value": "p_90/8308921011",
"refinement_display_name": "Delivery Day"
}
],
"amazon_fashion": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_eighteen_browse-bin%3A14630392011&dc&qid=1748864616&rnid=14630382011&ref=sr_nr_p_n_feature_eighteen_browse-bin_1&ds=v1%3AcCqpPQL6QNOT01i%2BtZ8Bw4rCJCbhDy6L2uR6kKKYiCU",
"name": "Top Brands",
"value": "n:7141123011,p_n_feature_eighteen_browse-bin/14630392011",
"refinement_display_name": "Amazon Fashion"
}
],
"apparel_pattern": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575358011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_1&ds=v1%3AB5i2mxzmGKnEEiHc4vKwstzELxQ9mxWEljgyfcGfmfc",
"name": "Solid",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575358011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575351011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_2&ds=v1%3AdgosYQiNEz5ebIx4MRlbQmr08wHcaIfbhp9oAei5lQY",
"name": "Letter Print",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575351011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575353011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_3&ds=v1%3AaRSbccedY%2Bve%2Bo3BLveEDY%2FHt2j7Fp2l54szWpXarCg",
"name": "Geometric",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575353011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575359011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_4&ds=v1%3A6RDQfsFIN9juOPKTuqoOf2MNRvfFk32NFlIDy%2Bedq4A",
"name": "Animal Print",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575359011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575366011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_5&ds=v1%3A2AJS2htzZcsk7Lx%2BnXAMDn4sihhWfedJvGJ4%2B7pOBYE",
"name": "Argyle",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575366011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575369011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_6&ds=v1%3A70H%2FsLLqMH0die%2B%2F7b2u%2FlHUtjvD6KpZ2xAxECNEui0",
"name": "Camouflage",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575369011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575357011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_7&ds=v1%3ABPiO3DCCdZ6Yl2%2B8a75ablEYMprcFp3%2BtmaWnp4uviw",
"name": "Checkered",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575357011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575360011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_8&ds=v1%3AwxiFtO9NIood7jv9m3hC%2Ff12aIYPpg3z9wvEUir%2Bhd0",
"name": "Chevron",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575360011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575355011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_9&ds=v1%3Ae1zfkWELKIGbKAXHRVx23tNc9Favt07ibOq9ZBKcYJY",
"name": "Floral",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575355011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23700438011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_10&ds=v1%3A4ZUYDRRVnztXqW2zq2XbeXbBqsSPo8d7ICX%2FPsuSVn4",
"name": "Hearts",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23700438011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575349011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_11&ds=v1%3A2eFm0%2FxtxmqrW%2BLqkmKxJIPVx9eHZkzTm16w3cLx75w",
"name": "Herringbone",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575349011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575363011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_12&ds=v1%3A7zbWlI1z0XvGT3SLvLfDZaIu553VaSPvb3D4QnL0yeM",
"name": "Moire",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575363011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575352011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_13&ds=v1%3AAzTaklO3BrZgTvoBHqTqjgLKkztynusTQbskX6cB4OI",
"name": "Paisley",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575352011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575356011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_14&ds=v1%3ALtp42x5ZWn%2B7fn8MRaEM%2BgXk%2B9azD%2BWH3kmph%2BBmtpM",
"name": "Plaid",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575356011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575361011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_15&ds=v1%3ANBWlmAdI1SXnguOOYdLVyZL8j6ms5fUBi6ExVassJYE",
"name": "Polka Dots",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575361011",
"refinement_display_name": "Apparel Pattern"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twelve_browse-bin%3A23575364011&dc&qid=1748864616&rnid=23575341011&ref=sr_nr_p_n_feature_twelve_browse-bin_16&ds=v1%3AcLAQbq04evAinUdOhcW1dMvOsyeGBhKga4E4zB2qp%2Bk",
"name": "Striped",
"value": "n:7141123011,p_n_feature_twelve_browse-bin/23575364011",
"refinement_display_name": "Apparel Pattern"
}
],
"deals_discounts": [
{
"link": "/s?k=nirvana+tshirt&rh=p_n_deal_type%3A23566065011&dc&qid=1748864616&rnid=23566063011&ref=sr_nr_p_n_deal_type_1&ds=v1%3AcHaW51xbr1JJ5OXaie29xcbUrdZsvyqXkOn3ZcF1rP4",
"name": "All Discounts",
"value": "p_n_deal_type/23566065011",
"refinement_display_name": "Deals & Discounts"
},
{
"link": "/s?k=nirvana+tshirt&rh=p_n_deal_type%3A23566064011&dc&qid=1748864616&rnid=23566063011&ref=sr_nr_p_n_deal_type_2&ds=v1%3AXKMStmu9KGYbBLcWxe2jyNxOvoAL4a7kK6bawUJb43s",
"name": "Today's Deals",
"value": "p_n_deal_type/23566064011",
"refinement_display_name": "Deals & Discounts"
}
],
"customer_reviews": [
{
"link": "/s?k=nirvana+tshirt&rh=p_72%3A2661618011&dc&qid=1748864616&rnid=2661617011&ref=sr_nr_p_72_1&ds=v1%3Ay7a3VMhMk%2BMcmtLrol%2Bc5%2BcWqP55q2vnfKNI651RSLA",
"name": "4 Stars",
"value": "p_72/2661618011",
"refinement_display_name": "Customer Reviews"
}
],
"shirt_neck_style": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A2359340011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_1&ds=v1%3ABe1C13%2FyqrO%2FRn9y8j3jZqtmke2jSB%2F32Xm4Qaf6rm8",
"name": "Crew Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/2359340011",
"refinement_display_name": "Shirt Neck Style"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A2359351011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_2&ds=v1%3AhPJYnc4vSyyBno1Skn%2FBU1gzmUJC3ENBckEQaiCchdY",
"name": "V Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/2359351011",
"refinement_display_name": "Shirt Neck Style"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A2359342011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_3&ds=v1%3AJbaxBn%2FR6t4Ljb3LpgD6coaoQc1JIyFKWYKCkubzcno",
"name": "Henley Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/2359342011",
"refinement_display_name": "Shirt Neck Style"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A13904914011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_4&ds=v1%3AQu%2FXVJNo6iGIxEKVTN1ioyw1SdANVOSgF0o6xrhfTuw",
"name": "Collared Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/13904914011",
"refinement_display_name": "Shirt Neck Style"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A2359341011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_5&ds=v1%3AkrAaK68HBTL6CQBzXZs7kqxGVkjKbya5WCbkwwTmehw",
"name": "Halter Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/2359341011",
"refinement_display_name": "Shirt Neck Style"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A2359344011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_6&ds=v1%3ALUVNXOwXYQCLQInJV4exs2YObfiPmEocNnlBbzl6AGw",
"name": "Hooded Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/2359344011",
"refinement_display_name": "Shirt Neck Style"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A2359345011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_7&ds=v1%3AsXW%2BH%2BGgPw1lg6fvfGH2DvLRKuT0Jj%2FY64c3oI7XOEA",
"name": "Mock Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/2359345011",
"refinement_display_name": "Shirt Neck Style"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A2359348011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_8&ds=v1%3A7XYh4uAdEXbPhmkvxLV4xJkZ8fsst%2BlmkeDRxq9KAv8",
"name": "Scoop Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/2359348011",
"refinement_display_name": "Shirt Neck Style"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_nineteen_browse-bin%3A6053176011&dc&qid=1748864616&rnid=2359337011&ref=sr_nr_p_n_feature_nineteen_browse-bin_9&ds=v1%3AINHvhr6AhMt2GhSKcJ2y%2F%2BggCvF6cAUji1EWw0cDZ48",
"name": "Sweetheart Neck",
"value": "n:7141123011,p_n_feature_nineteen_browse-bin/6053176011",
"refinement_display_name": "Shirt Neck Style"
}
],
"care_instructions": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twenty-two_browse-bin%3A120826545011&dc&qid=1748864616&rnid=120826542011&ref=sr_nr_p_n_feature_twenty-two_browse-bin_1&ds=v1%3AraAIj31wfPgcOHUex4pvKWdSQ1fCDurvq1GQhRyO6nk",
"name": "Dry Clean Only",
"value": "n:7141123011,p_n_feature_twenty-two_browse-bin/120826545011",
"refinement_display_name": "Care Instructions"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twenty-two_browse-bin%3A120826544011&dc&qid=1748864616&rnid=120826542011&ref=sr_nr_p_n_feature_twenty-two_browse-bin_2&ds=v1%3AaQHkyIOhuTHWb5BJdJN1CdivWy69K4qGgfyD4tO9cEE",
"name": "Hand Wash Only",
"value": "n:7141123011,p_n_feature_twenty-two_browse-bin/120826544011",
"refinement_display_name": "Care Instructions"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_twenty-two_browse-bin%3A120826543011&dc&qid=1748864616&rnid=120826542011&ref=sr_nr_p_n_feature_twenty-two_browse-bin_3&ds=v1%3ABmHnpmujlA%2FzvvDwYiJGnm0rCBF7ewyWOOq2cqT8b6Q",
"name": "Machine Wash",
"value": "n:7141123011,p_n_feature_twenty-two_browse-bin/120826543011",
"refinement_display_name": "Care Instructions"
}
],
"clothing_material": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_material_browse%3A31310053011&dc&qid=1748864616&rnid=31310038011&ref=sr_nr_p_n_material_browse_1&ds=v1%3AiXxq9nmpVxgAkVTPVFK03JwsKbIcOMPXlL5%2FGXkwrnc",
"name": "Cotton",
"value": "n:7141123011,p_n_material_browse/31310053011",
"refinement_display_name": "Clothing Material"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_material_browse%3A31310042011&dc&qid=1748864616&rnid=31310038011&ref=sr_nr_p_n_material_browse_2&ds=v1%3ANrOHaaoSUx%2Bm66vztvoKGtWcTTxVlIn4sVQ%2BJl82Yb8",
"name": "Polyester",
"value": "n:7141123011,p_n_material_browse/31310042011",
"refinement_display_name": "Clothing Material"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_material_browse%3A31310052011&dc&qid=1748864616&rnid=31310038011&ref=sr_nr_p_n_material_browse_3&ds=v1%3AeAU9j9jJnh2lYQ%2FC8jxXybpweh%2B%2B7hI004wbAhCDDik",
"name": "Silk",
"value": "n:7141123011,p_n_material_browse/31310052011",
"refinement_display_name": "Clothing Material"
}
],
"mens_clothing_size": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475466011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_1&ds=v1%3AVdGjhQztI61wby3dzMDgySmp75ZNJ2kWuc6BPB9eVw4",
"name": "XS",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475466011",
"refinement_display_name": "Men's Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475467011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_2&ds=v1%3AXpx6Y1rQhkM4eAY3r%2F9v9Ys1stqldQl%2Fiz2yOMeAViQ",
"name": "S",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475467011",
"refinement_display_name": "Men's Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475468011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_3&ds=v1%3AVbpam53jtRyA3wfD0tIFrUebDKgZaTbTLs2gUUDt6BQ",
"name": "M",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475468011",
"refinement_display_name": "Men's Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475469011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_4&ds=v1%3AeCTlbHP9eOwa6GFlXVAQ9n1UCqOS1B4VE8kDWGigPxE",
"name": "L",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475469011",
"refinement_display_name": "Men's Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475470011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_5&ds=v1%3AQ2SLTLBiyQ2%2Fc81v2SQG%2BTfxQmjUmh6GQxhnN3Ae0KQ",
"name": "XL",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475470011",
"refinement_display_name": "Men's Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475471011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_6&ds=v1%3AgVsOVmEcGJg%2BqA9KDzC5jfgmVJDziTAPooUi8LXdlbo",
"name": "2XL",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475471011",
"refinement_display_name": "Men's Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475472011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_7&ds=v1%3AS8zB5%2FYNmkHmV2idhOMMa%2B7mVGv6K7pyW8FG2bTsO2Y",
"name": "3XL",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475472011",
"refinement_display_name": "Men's Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475473011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_8&ds=v1%3AtwaGT16HYbkNZT%2Bqs5KgSMg5SzwdI5H4AZWs%2FLaXUl8",
"name": "4XL",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475473011",
"refinement_display_name": "Men's Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_men_international_size%3A2475474011&dc&qid=1748864616&rnid=2475465011&ref=sr_nr_p_n_pt_nav_size_men_international_size_9&ds=v1%3A6PR%2FvaJAeuHJCv%2FM51A2T1yrYAgNbahAxrsqKYxCHHw",
"name": "5XL",
"value": "n:7141123011,p_n_pt_nav_size_men_international_size/2475474011",
"refinement_display_name": "Men's Clothing Size"
}
],
"novelty_apparel_theme": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A17051383011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_1&ds=v1%3AYlXPRNSAKU%2BCbzUV%2FMxgYyKz8ZBnS1PGNiru8ZI%2FAm0",
"name": "Music & Band",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/17051383011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214016011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_2&ds=v1%3Ar3FztVvfWRxmmUcoCmtKLcEKjwhMxLjSVJAFOKo8wrw",
"name": "Birthday",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214016011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214013011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_3&ds=v1%3Aj%2BUQNdPcNE%2BhJTTAbfBOu68gRAyDv2cKx%2BbGdBRnX5o",
"name": "Cities, Countries & Flags",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214013011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214026011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_4&ds=v1%3AYtj5pI9bQA5clodP7m3j9puJpyr03GF4QthwMqI63vU",
"name": "Humor",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214026011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214032011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_5&ds=v1%3AyW7D6YS7INbHUDXfXaorErJhBi1PQo0OfY6bYpzCebs",
"name": "Retro",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214032011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214014011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_6&ds=v1%3AYgcObBIR%2F7jc6bz2mUWuiWHF%2BRgIk1TV6phiKgCwAq4",
"name": "Animal",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214014011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214021011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_7&ds=v1%3AtQeGbMH0P2kJIuMIyvUqNTc3pdfEuncCJXj7q5qt%2B1s",
"name": "Food & Drink",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214021011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214025011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_8&ds=v1%3A03HyA9O%2FshvHyn477LYL29IocyPcyiE3qcgUao%2FkTys",
"name": "Holiday & Seasonal",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214025011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214027011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_9&ds=v1%3Ah9a0Rry7ZhQKHy0wKgIsBP8COJvNO0bi%2FWADi5ssao0",
"name": "Literary",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214027011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214031011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_10&ds=v1%3Aw4N52jHUivAGsgGn0gbx1TGqS4gikz%2F8bWsXqvb5ckw",
"name": "Relatives & Family",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214031011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214033011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_11&ds=v1%3AxqbyjrYpDi%2BHM5ouDo0svzbzbfA2nEkZJApctFwc1zo",
"name": "Sports",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214033011",
"refinement_display_name": "Novelty Apparel Theme"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_pt_nav_size_boy_size_three%3A9214036011&dc&qid=1748864616&rnid=9214012011&ref=sr_nr_p_n_pt_nav_size_boy_size_three_12&ds=v1%3AKVlqXERw5qoj5pXgcJEkjUJWnuawh8StP%2Fm9KpiLYkY",
"name": "Workout",
"value": "n:7141123011,p_n_pt_nav_size_boy_size_three/9214036011",
"refinement_display_name": "Novelty Apparel Theme"
}
],
"special_clothing_size": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_shoe_width_browse-vebin%3A492380011&dc&qid=1748864616&rnid=492378011&ref=sr_nr_p_n_shoe_width_browse-vebin_1&ds=v1%3Ae1OmG4%2Beq2j3OENwIPXY9%2B9UDTomVbqmk6EhNDEDP4U",
"name": "Big & Tall",
"value": "n:7141123011,p_n_shoe_width_browse-vebin/492380011",
"refinement_display_name": "Special Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_shoe_width_browse-vebin%3A13130370011&dc&qid=1748864616&rnid=492378011&ref=sr_nr_p_n_shoe_width_browse-vebin_2&ds=v1%3AuurkT4ukFDHZYkSOwVLKitpyo7KtWRx%2FRS75JVMzlEk",
"name": "Juniors",
"value": "n:7141123011,p_n_shoe_width_browse-vebin/13130370011",
"refinement_display_name": "Special Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_shoe_width_browse-vebin%3A492383011&dc&qid=1748864616&rnid=492378011&ref=sr_nr_p_n_shoe_width_browse-vebin_3&ds=v1%3AFXJaclj%2Futfvh2Hw5bw2oTmT8%2B19J%2FPi%2FK4KxN37Bb8",
"name": "Petite",
"value": "n:7141123011,p_n_shoe_width_browse-vebin/492383011",
"refinement_display_name": "Special Clothing Size"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_shoe_width_browse-vebin%3A492379011&dc&qid=1748864616&rnid=492378011&ref=sr_nr_p_n_shoe_width_browse-vebin_4&ds=v1%3AEjyz7l3j2UYzVjF0LLEPAHyptbSvZT4y6rDMrKsTtkc",
"name": "Plus Size",
"value": "n:7141123011,p_n_shoe_width_browse-vebin/492379011",
"refinement_display_name": "Special Clothing Size"
}
],
"more_sustainable_products": [
{
"link": "/s?k=nirvana+tshirt&rh=p_n_cpf_eligible%3A21512497011&dc&qid=1748864616&rnid=21512496011&ref=sr_nr_p_n_cpf_eligible_1&ds=v1%3Aee09XDMEzcb5nr%2B%2BBRZtuH4IEQ2DPIG4NA4yGD0h8eA",
"name": "Climate Pledge Friendly",
"value": "p_n_cpf_eligible/21512497011",
"refinement_display_name": "More-sustainable Products"
}
],
"sleeve_length_description": [
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_browse-bin%3A368722011&dc&qid=1748864616&rnid=368720011&ref=sr_nr_p_n_feature_browse-bin_1&ds=v1%3AXK3qIuzyjPpC8K8HWc8f2047vsLWD%2FzSCSAm0MHvYm4",
"name": "Short Sleeve",
"value": "n:7141123011,p_n_feature_browse-bin/368722011",
"refinement_display_name": "Sleeve Length Description"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_browse-bin%3A368723011&dc&qid=1748864616&rnid=368720011&ref=sr_nr_p_n_feature_browse-bin_2&ds=v1%3AyyeKkTJN%2FNGVfHUBv9sdsjozwuNj4XJFKOYZJL9sDRI",
"name": "Long Sleeve",
"value": "n:7141123011,p_n_feature_browse-bin/368723011",
"refinement_display_name": "Sleeve Length Description"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_browse-bin%3A370089011&dc&qid=1748864616&rnid=368720011&ref=sr_nr_p_n_feature_browse-bin_3&ds=v1%3AaDjT%2FQqFbxiNzrJQRzyetEs5mao6AtfGjaw9jvWsuNs",
"name": "Sleeveless",
"value": "n:7141123011,p_n_feature_browse-bin/370089011",
"refinement_display_name": "Sleeve Length Description"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_browse-bin%3A50382011&dc&qid=1748864616&rnid=368720011&ref=sr_nr_p_n_feature_browse-bin_4&ds=v1%3ALLf5i8JY%2BSCr5zPfqXRTOZpB2SP%2FxbW1rnjii3N4d%2FI",
"name": "3/4 Sleeve",
"value": "n:7141123011,p_n_feature_browse-bin/50382011",
"refinement_display_name": "Sleeve Length Description"
},
{
"link": "/s?k=nirvana+tshirt&rh=n%3A7141123011%2Cp_n_feature_browse-bin%3A23575156011&dc&qid=1748864616&rnid=368720011&ref=sr_nr_p_n_feature_browse-bin_5&ds=v1%3AJ5do%2BFqSczzFN8D7Lj9LrPmRswiryxemP3hl8TguNGc",
"name": "Half Sleeve",
"value": "n:7141123011,p_n_feature_browse-bin/23575156011",
"refinement_display_name": "Sleeve Length Description"
}
],
"eligible_for_free_shipping": [
{
"link": "/s?k=nirvana+tshirt&rh=p_76%3A2661625011&dc&qid=1748864616&rnid=2661623011&ref=sr_nr_p_76_1&ds=v1%3AUM%2F5e8hRJoxxFO9n6pN7bfOYlX1Rou%2FS8MQuiQKbjAQ",
"name": "Free Shipping by Amazon",
"value": "p_76/2661625011",
"refinement_display_name": "Eligible for Free Shipping"
}
]
},
"last_visible_page": 7,
"parse_status_code": 12000
},
"created_at": "2025-06-02 11:43:35",
"updated_at": "2025-06-02 11:43:37",
"page": 1,
"url": "https://www.amazon.com/s?k=nirvana%20tshirt&page=1",
"job_id": "7335269853705561089",
"is_render_forced": false,
"status_code": 200,
"parser_type": "",
"parser_preset": null
}
],
"job": {
"callback_url": null,
"client_id": 100420,
"context": [
{
"key": "force_headers",
"value": false
},
{
"key": "force_cookies",
"value": false
},
{
"key": "hc_policy",
"value": true
},
{
"key": "category_id",
"value": null
},
{
"key": "merchant_id",
"value": null
},
{
"key": "check_empty_geo",
"value": null
},
{
"key": "safe_search",
"value": true
},
{
"key": "currency",
"value": null
},
{
"key": "sort_by",
"value": null
},
{
"key": "refinements",
"value": null
},
{
"key": "min_price",
"value": null
},
{
"key": "max_price",
"value": null
}
],
"created_at": "2025-06-02 11:43:35",
"domain": "com",
"geo_location": null,
"id": "7335269853705561089",
"limit": 10,
"locale": null,
"pages": 1,
"parse": true,
"parser_type": null,
"parser_preset": null,
"parsing_instructions": null,
"browser_instructions": null,
"render": null,
"xhr": false,
"url": null,
"query": "nirvana tshirt",
"source": "amazon_search",
"start_page": 1,
"status": "done",
"storage_type": null,
"storage_url": null,
"subdomain": "www",
"content_encoding": "utf-8",
"updated_at": "2025-06-02 11:43:37",
"user_agent_type": "desktop",
"session_info": null,
"statuses": [],
"client_notes": null,
"_links": [
{
"rel": "self",
"href": "http://data.oxylabs.io/v1/queries/7335269853705561089",
"method": "GET"
},
{
"rel": "results",
"href": "http://data.oxylabs.io/v1/queries/7335269853705561089/results",
"method": "GET"
},
{
"rel": "results-content",
"href_list": [
"http://data.oxylabs.io/v1/queries/7335269853705561089/results/1/content"
],
"method": "GET"
},
{
"rel": "results-html",
"href": "http://data.oxylabs.io/v1/queries/7335269853705561089/results?type=raw",
"method": "GET"
},
{
"rel": "results-content-html",
"href_list": [
"http://data.oxylabs.io/v1/queries/7335269853705561089/results/1/content?type=raw"
],
"method": "GET"
},
{
"rel": "results-parsed",
"href": "http://data.oxylabs.io/v1/queries/7335269853705561089/results?type=parsed",
"method": "GET"
},
{
"rel": "results-content-parsed",
"href_list": [
"http://data.oxylabs.io/v1/queries/7335269853705561089/results/1/content?type=parsed"
],
"method": "GET"
}
]
}
}
API returns a HTML or JSON object that contains the search results retrieved from the Amazon.
All search results are contained within the results
JSON array. Each search result includes a combination of paid
, organic
, suggested
, amazons_choices
,instant_recommendations
listings. Additionally, variations may be present, and they are captured within the variations
key, providing details about different types or categories of products, such as various models, editions, or versions.
url
The URL of the Amazon search page.
string
page
The current page number.
integer
pages
The total number of pages.
integer
query
The search query used.
string
results
A dictionary containing the results of the search.
object
results.paid
A list of sponsored products with their respective details.
array
results.organic
A list of organic products with their respective details.
array
results.suggested
A list of suggested products with their respective details.
array
results.amazons_choices
A list of Amazon's choices with their respective details.
array
results.instant_recommendations
A list of instant recommendations with their respective details.
array
refinements
A list of refinements available on this search page.
array
parse_status_code
integer
total_results_count
The total number of results found for the search query.
integer
created_at
The timestamp when the scraping job was created.
string
updated_at
The timestamp when the scraping job was finished.
string
job_id
The ID of the job associated with the scraping job.
string
status_code
integer
parser_type
The type of parser used for parsing the data.
string
In the following sections, parsed JSON code snippets are shortened where more than one item for the result type is available.
The paid
section of the search results refers to inline ad content that is displayed within the Amazon search results.
...
"paid": [
{
"pos": 1,
"url": "/sspa/click?ie=UTF8&spc=MTo3ODk3NzcxNTI0MDAzNjk1OjE3MDEwODYyODI6c3BfYXRmOjMwMDA5Mjg4ODc1NTcwMjo6MDo6&url=/IOGEAR-KeyMander-Controller-Crossover-GE1337P2/dp/B08541QCKJ/ref=sr_1_1_sspa?keywords=nintendo&qid=1701086282&sr=8-1-spons&sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY&psc=1"","asin": "B08541QCKJ","price": 69.99,
"title": "IOGEAR KeyMander 2 Keyboard/Mouse Adapter Plus Controller Crossover, PS4, PS5, Xbox Series X/S, Xbox One, Nintendo Switch, GE1337P2, FPS, mouse control",
"rating": 3.7,
"currency": "USD",
"is_prime": true,
"url_image": "https://m.media-amazon.com/images/I/41-AZ8CCl1L._AC_UY218_.jpg",
"best_seller": false,
"price_upper": 69.99,
"is_sponsored": true,
"manufacturer": "",
"pricing_count": 1,
"reviews_count": 1229,
"is_amazons_choice": false,
"price_strikethrough": 99.95,
"shipping_information": "FREE delivery Sun, Dec 3 Or fastest delivery Thu, Nov 30"
},
...
]
url
The URL of the product.
string
asin
Amazon Standard Identification Number.
string
price
The price of the product.
float
title
The title of the product.
string
rating
The rating of the product.
float
rel_pos
The relative position of the product in the search results.
(either pos
or rel_pos
is present)
integer
pos
A unique indicator denoting the position in the listing. (either pos
or rel_pos
is present)
integer
currency
The currency in which the price is denominated.
string
url_image
The URL of the product image.
string
best_seller
Indicates whether the product is a best seller.
boolean
price_upper
The upper limit of the price if applicable.
float
is_sponsored
Indicates whether the product is sponsored.
boolean
manufacturer
The name of the manufacturer of the product.
string
pricing_count
The count of offers for the product.
integer
reviews_count
The count of reviews for the product.
integer
is_amazons_choice
Indicates whether the product is marked as “Amazon's choice”.
boolean
no_price_reason
Indicator why the price is not present, if it’s equal to 0.0
string (optional)
sales_volume
The sales volume or number of units sold for a particular product.
string (optional)
is_prime
Indicates whether the product is eligible for Amazon Prime.
boolean
shipping_information
Information about the shipping details for the produc
string
The organic
section of the search results refers to non-sponsored content that appears naturally based on Amazon's search algorithm.
...
"organic": [
{
"pos": 3,
"url": "/Nintendo-eShop-Gift-Card-Digital/dp/B01LYOCVZF/ref=sr_1_3?keywords=nintendo&qid=1701086282&sr=8-3",
"asin": "B01LYOCVZF",
"price": 20,
"title": "$20 Nintendo eShop Gift Card [Digital Code]",
"rating": 4.7,
"currency": "USD",
"is_prime": false,
"url_image": "https://m.media-amazon.com/images/I/71cj5cNm7ZL._AC_UY218_.jpg"
},
...
]
pos
A unique indicator denoting the position in the listing.
integer
url
The URL of the product.
string
asin
Amazon Standard Identification Number.
string
price
The price of the product.
float
title
The title of the product.
string
rating
The rating of the product.
float
currency
The currency in which the price is denominated.
string
url_image
The URL of the product image.
string
best_seller
Indicates whether the product is a best seller.
boolean
price_upper
The upper limit of the price if applicable.
float
is_sponsored
Indicates whether the product is sponsored.
boolean
manufacturer
The name of the manufacturer of the product.
string
pricing_count
The count of pricings for the product.
integer
reviews_count
The count of reviews for the product.
integer
is_amazons_choice
Indicates whether the product is Amazon's choice.
boolean
no_price_reason
Indicator why the price is not present, if it’s equal to 0.0
string(optional)
is_prime
Indicates whether the product is eligible for Amazon Prime.
boolean
sales_volume
The sales volume or number of units sold for a particular product.
string(optional)
variations
List of different versions or models of a product
Array
The suggested
section in the search results typically contains product listings recommended by the platform based on the user's search query, browsing history, or purchase behavior.
...
"suggested": [
{
"pos": 3,
"asin": "B07L4ZRJ7P",
"best_seller": false,
"is_sponsored": false,
"is_amazons_choice": false,
"manufacturer": "",
"pricing_count": 1,
"rating": 4.0,
"reviews_count": 1,
"title": "The Supercar Story",
"url": "/Supercar-Story-Patrick-Mark/dp/B07L4ZRJ7P/ref=sr_1_fkmr0_1?keywords=details+about+mercedes+benz+head+unit+e-class+w213+comand+navi+gps+unit+a21390050813&qid=1636460216&sr=8-1-fkmr0",
"url_image": "https://m.media-amazon.com/images/I/81uC-IclZqL._AC_UY218_.jpg",
"is_prime": false,
"price": 0.0,
"price_upper": 0.0,
"no_price_reason": "unknown",
"pos": 1,
"currency": "USD",
"suggested_query": "details benz head"
},
...
]
url
The URL of the product.
string
asin
Amazon Standard Identification Number.
string
price
The price of the product.
float
title
The title of the product.
string
rating
The rating of the product.
float
currency
The currency in which the price is denominated.
string
url_image
The URL of the product image.
string
best_seller
Indicates whether the product is a best seller.
boolean
price_upper
The upper limit of the price if applicable.
float
is_sponsored
Indicates whether the product is sponsored.
boolean
manufacturer
The name of the manufacturer of the product.
string
pricing_count
The count of pricing for the product.
integer
reviews_count
The count of reviews for the product.
integer
is_amazons_choice
Indicates whether the product is Amazon's choice.
boolean
pos
A unique indicator denoting the position in the listing.
integer
is_prime
Indicates whether the product is eligible for Amazon Prime.
boolean
shipping_information
Information about the shipping details for the product.
string
sales_volume
The sales volume or number of units sold for a particular product.
string(optional)
no_price_reason
Indicator why the price is not present, if it’s equal to 0.0
string(optional)
suggested_query
The suggested query provided by Amazon as part of the search results.
string
The amazons_choices
section features products with 'Amazon's Choice' badge and are recommended by the platform for their perceived quality and value.
...
"amazons_choices": [
{
"asin": "B07STGGQ18",
"best_seller": false,
"is_sponsored": false,
"is_amazons_choice": true,
"manufacturer": "",
"pricing_count": 1,
"rating": 4.8,
"reviews_count": 9,
"title": "AMD Ryzen 5 3600 4, 2GHz AM4 35MB Cache Wraith Stealth",
"url": "/AMD-Ryzen-3600-Wraith-Stealth/dp/B07STGGQ18/ref=sr_1_3?dchild=1&keywords=0730143309936&qid=1600153905&sr=8-3",
"url_image": "https://m.media-amazon.com/images/I/71WPGXQLcLL._AC_UY218_.jpg",
"is_prime": true,
"price": 179.0,
"price_upper": 179.0,
"shipping_information": "Lieferung bis Freitag, 18. September GRATIS Versand durch Amazon",
"pos": 3,
"currency": "EUR"
},
...
]
url
The URL of the product.
string
asin
Amazon Standard Identification Number.
string
price
The price of the product.
float
title
The title of the product.
string
rating
The rating of the product.
float
currency
The currency in which the price is denominated.
string
url_image
The URL of the product image.
string
best_seller
Indicates whether the product is a best seller.
boolean
price_upper
The upper limit of the price if applicable.
float
is_sponsored
Indicates whether the product is sponsored.
boolean
manufacturer
The name of the manufacturer of the product.
string
pricing_count
The count of pricing for the product.
integer
reviews_count
The count of reviews for the product.
integer
is_amazons_choice
Indicates whether the product is Amazon's choice.
boolean
pos
A unique indicator denoting the position in the listing.
integer
is_prime
Indicates whether the product is eligible for Amazon Prime.
boolean
shipping_information
Information about the shipping details for the product.
string
sales_volume
The sales volume or number of units sold for a particular product.
string(optional)
no_price_reason
Indicator why the price is not present, if it’s equal to 0.0
string(optional)
variations
List of different versions or models of a product
Array
The instant_recommendations
section may include products that are suggested to users based on their current search or viewing activity in real-time.
...
"instant_recommendations": [
{
"asin": "B004Q5FSFC",
"best_seller": false,
"is_sponsored": false,
"is_amazons_choice": false,
"manufacturer": "",
"pricing_count": 1,
"rating": 4.4,
"reviews_count": 2583,
"title": "BabyPrem 2 Moses Basket Sheets Fitted White Cotton",
"url": "/dp/B004Q5FSFC/ref=sxbs_sbl_swb_0?pd_rd_w=LVYjW&pf_rd_p=50b422af-ccd5-4019-befd-3f6948bd35a6&pf_rd_r=A56P28D64SR0C4MGA9H9&pd_rd_r=40560bcc-28a9-4fdb-bbc4-5fcd00496323&pd_rd_wg=ztuOU&pd_rd_i=B004Q5FSFC",
"url_image": "https://images-na.ssl-images-amazon.com/images/G/01/x-locale/common/grey-pixel.gif",
"price": 12.99,
"price_upper": 12.99,
"pos": 65,
"currency": "USD"
},
...
]
url
The URL of the product.
string
asin
Amazon Standard Identification Number.
string
price
The price of the product.
float
title
The title of the product.
string
rating
The rating of the product.
float
currency
The currency in which the price is denominated.
string
url_image
The URL of the product image.
string
best_seller
Indicates whether the product is a best seller.
boolean
price_upper
The upper limit of the price if applicable.
float
is_sponsored
Indicates whether the product is sponsored.
boolean
manufacturer
The name of the manufacturer of the product.
string
pricing_count
The count of pricings for the product.
integer
reviews_count
The count of reviews for the product.
integer
is_amazons_choice
Indicates whether the product is Amazon's choice.
boolean
pos
A unique indicator denoting the position in the listing.
integer
sales_volume
The sales volume or number of units sold for a particular product.
string(optional)
no_price_reason
Indicator why the price is not present, if it’s equal to 0.0
string(optional)
The variations
section lists different versions or models of a product, providing a detailed overview of available options in the specified category.
...
"variations": [
{
"asin": "B08KXB6SZH",
"title": "PlayStation 5",
"price": 29.99,
"not_available": false
},
{
"asin": "B08L6FZM6D",
"title": "PlayStation 4",
"not_available": false,
"no_price_reason": "unknown"
},
{
"asin": "B08N766Q9W",
"title": "Xbox Digial Code",
"not_available": true,
"no_price_reason": "Currently unavailable."
}
],
...
asin
Amazon Standard Identification Number
string
title
Title of the variation
string
price
Price of the variation
float
price_strikethrough
The original price before any discounts or promotions
float
not_available
Indicates if the variation is currently unavailable
boolean
We use synchronous integration method in our examples. If you would like to use or asynchronous integration, refer to the section.
Enables JavaScript rendering when set to html
. .
Returns parsed data when set to true
. Explore output .
URL to your callback endpoint. .
Device type and browser. The full list can be found .
The Deliver to location. See our guide to using this parameter .
Domain localization for Bestbuy. The full list of available domains can be found .
Accept-Language
header value, which sets the interface language of the Amazon page. .
IMPORTANT: On most page types, Amazon tailors the returned results based on the delivery location of their customers. Therefore, we advise using the geo_location
parameter to set your preferred delivery location. You can read more about using geo_location
with Amazon .
Sets the currency. Check the available values .
Depends on the marketplace. Check the default values .
The status code of the parsing job. You can see the parser status codes described .
The status code of the scraping job. You can see the scraper status codes described .