To see Item Specifics that a seller has included in a listing, use GetItem. The item specifics are returned as name/value pairs that you can display to a user. Configure IncludeItemSpecifics to true in the request to retrieve the Item.ItemSpecifics node. (If the listing has no Item Specifics, the node is not returned.)
The following example shows a portion of a GetItem response with an Item.ItemSpecifics node. In this case, the seller listed a gold chain bracelet with a lobster clasp.
<?xml version="1.0" encoding="utf-8"?>
<GetItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2021-01-20T15:51:13.560Z</Timestamp>
<Ack>Success</Ack>
<Version>1183</Version>
<Build>E1183_CORE_API_19306986_R1</Build>
<Item>
<Title>Gold Chain Bracelet with Lobster Clasp</Title>
<PrimaryCategory>
<CategoryID>110433</CategoryID>
</PrimaryCategory>
<!-- more elements here -->
<ItemSpecifics>
<NameValueList>
<Name>Metal & Material</Name>
<Value>Gold Plated, Filled</Value>
<Source>ItemSpecific</Source>
</NameValueList>
<NameValueList>
<Name>Product</Name>
<Value>Bracelets</Value>
<Source>ItemSpecific</Source>
</NameValueList>
<NameValueList>
<Name>Gender</Name>
<Value>Women's</Value>
<Source>ItemSpecific</Source>
</NameValueList>
<NameValueList>
<Name>Gold Type</Name>
<Value>14k</Value>
<Source>ItemSpecific</Source>
</NameValueList>
<NameValueList>
<Name>Style</Name>
<Value>Figaro</Value>
<Source>ItemSpecific</Source>
</NameValueList>
<NameValueList>
<Name>Total Carat Weight</Name>
<Value>3.00 carats and larger</Value>
<Source>ItemSpecific</Source>
</NameValueList>
<NameValueList>
<Name>Chain Length</Name>
<Value>7 in.</Value>
<Source>ItemSpecific</Source>
</NameValueList>
<NameValueList>
<Name>Clasp</Name>
<Value>Lobster</Value>
<Source>ItemSpecific</Source>
</NameValueList>
</ItemSpecifics>
</Item>
</GetItemResponse>
eBay returns Item Specifics in the order that the seller specified them. We suggest you display them in that order, in case the seller grouped or ordered them in a logical way.