eBay Inline Results API

eBay search results that are between the main results (usually in carousel form) are called inline results. It includes rich data like title, condition, price, thumbnail and other attributes. SerpApi is able to scrape, extract, and make sense of those results.

API Examples

Example results: Nintendo Switch

Example results: Nintendo Switch

JSON Example

{
  ...
  "inline_results": [
    {
      "title": "eBay Refurbished",
      "subtitle": "Inspected and tested by quality-vetted businesses. Allstate warranty included.",
      "link": "https://www.ebay.com/sch/i.html?_nkw=Nintendo+switch&LH_ItemCondition=2000%7C2010%7C2020%7C2030",
      "items": [
        {
          "sponsored": true,
          "title": "Nintendo Switch (Red & Blue Joy-Con) & accessories *INCLUDES FREE CARRYING CASE*",
          "link": "https://www.ebay.com/itm/325389825450?epid=16029037217&hash=item4bc2beb5aa:g:S3wAAOSwvsth4Jrv",
          "serpapi_link": "https://serpapi.com/search.json?ebay_domain=ebay.com&engine=ebay_product&product_id=325389825450",
          "product_id": "325389825450",
          "condition": "Very Good - Refurbished",
          "price": {
            "raw": "$259.99",
            "extracted": 259.99
          },
          "shipping": "Free shipping",
          "extensions": [
            "eBay Refurbished"
          ],
          "thumbnail": "https://i.ebayimg.com/thumbs/images/g/S3wAAOSwvsth4Jrv/s-l225.jpg"
        },
        {
          "sponsored": true,
          "title": "Nintendo Switch - 32GB Gray Console (with Gray Joy-Con) Very Good Condition",
          "link": "https://www.ebay.com/itm/192389921367?epid=16024806629&hash=item2ccb553a57:g:3xsAAOSwdJ9aKUXx",
          "serpapi_link": "https://serpapi.com/search.json?ebay_domain=ebay.com&engine=ebay_product&product_id=192389921367",
          "product_id": "192389921367",
          "condition": "Very Good - Refurbished",
          "price": {
            "raw": "$247.49",
            "extracted": 247.49
          },
          "shipping": "Free shipping",
          "extensions": [
            "eBay Refurbished"
          ],
          "thumbnail": "https://i.ebayimg.com/thumbs/images/g/3xsAAOSwdJ9aKUXx/s-l225.jpg"
        },
        ...
      ]
    }
  ],
  ...
}

JSON structure overview

{
  ...
  "inline_results": [
    {
      "title": "String - The title of the inline results section",
      "items": [
        {
          "sponsored": "Boolean - Indicates if the item is sponsored",
          "title": "String - The title of the item",
          "link": "String - The URL to the item's page on eBay",
          "serpapi_link": "String - The SerpApi link to fetch detailed product information",
          "product_id": "String - The unique identifier for the product",
          "condition": "String - The condition of the item",
          "price": {
            "raw": "String - The price of the item",
            "extracted": "Float - The numerical value of the price"
          },
          "shipping": "String - Shipping information",
          "bids": {
            "count": "Integer - Number of bids"
          },
          "extensions": [
            "Array - Additional labels or tags associated with the item"
          ],
          "thumbnail": "String - URL to the item's thumbnail image"
        }
      ]
    }
  ]
  ...
}